/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "ofc_font", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #fff
}

@font-face {
    font-family: "ofc_font";
    src: url(../fonts/Gilgan-Regular.otf) format("otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

/* Color Variables - Novo esquema de cores */
:root {
    --primary-blue: #2544ef;
    --secondary-blue: #0b1445;
    --white: #fff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --text-dark: #333
}

/* Utility Classes */
.text-primary {
    color: var(--primary-blue) !important
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 68, 239, 0.3);
    border: 1px solid transparent
}

.btn-primary:hover {
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(37, 68, 239, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border: 1px solid white
}

.btn-cta {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block
}

.btn-cta:hover {
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(37, 68, 239, 0.4);
    color: white
}

/* Header */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

.navbar-brand {
    color: var(--text-dark) !important
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px
}

.nav-link:hover {
    color: var(--primary-blue) !important
}

/* Hero Section */
.hero-benefits li:hover {
    transform: scale(1.1);
    transition: .3s linear;
    box-shadow: rgba(0, 0, 0, 0.05);
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    position: relative;
    /* overflow: hidden; */
    min-height: 100vh;
    padding-bottom: 15rem
}

.hero-content {
    padding: 2rem;
    text-align: center
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20rem
}

.hero-container-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto
}

.hero-mockup {
    position: relative;
    z-index: 5
}

.hero-mockup img {
    height: 40rem;
    object-fit: contain;
    max-width: 100%
}

.hero-image-wrapper {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50% 30% 50% 30%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg)
}

.scroll-vantagens {
    cursor: pointer;
    background: none;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    padding: 1rem 1.5rem
}

.founder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem
}

.founder-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--white)
}

.founder-details {
    display: flex;
    flex-direction: column;
    text-align: left
}

.founder-details strong {
    color: white;
    font-size: 1rem
}

.founder-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem
}

#details-section {
    background-color: #f0f3f8
}

.section-mockup-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.section-mockup-area img {
    z-index: 0;
    position: relative
}

.blob {
    width: 100%;
    height: 60%;
    background-image: linear-gradient(var(--primary-blue), var(--secondary-blue));
    border-radius: 55% 45% 65% 35%/60% 40% 60% 40%;
    animation: morph 12s ease-in-out infinite;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: absolute;
    transform: translatex(150px);
    margin-left: -70%
}

@keyframes morph {
    0% {
        border-radius: 55% 45% 65% 35%/60% 40% 60% 40%;
    }

    33% {
        border-radius: 70% 30% 50% 70%/35% 65% 45% 65%;
    }

    66% {
        border-radius: 40% 70% 60% 30%/70% 30% 70% 30%;
    }

    100% {
        border-radius: 55% 45% 65% 35%/60% 40% 60% 40%;
    }
}

/* Estilos dos cards */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white
}

.card-hover:hover {
    transform: translatey(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important
}

/* Wrapper dos ícones */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

/* Estilos dos ícones */
.icon-wrapper img {
    font-size: 28px;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 10px;
    padding: 0.8rem;
}

/* Cores dos ícones */
.icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
}

.icon-teal {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%)
}

.icon-blue {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%)
}

.icon-orange {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%)
}

.icon-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: inherit
}

.icon-wrapper i {
    position: relative;
    z-index: 1
}

/* Títulos dos cards */
.card-title {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.4
}

/* Texto dos cards */
.card-text {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.6
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem
    }

    #mainNavbar .container {
        padding: 10px !important;
    }

    .card-body {
        padding: 1.5rem !important
    }

    .contacts-links button {
        width: 100% !important
    }

    .icon-wrapper {
        width: 50px;
        height: 50px
    }

    .icon-wrapper i {
        font-size: 24px
    }
}

/* Animação suave para os cards */
.card {
    animation: fadeInUp 0.6s ease-out
}

.card:nth-child(1) {
    animation-delay: 0.1s
}

.card:nth-child(2) {
    animation-delay: 0.2s
}

.card:nth-child(3) {
    animation-delay: 0.3s
}

.card:nth-child(4) {
    animation-delay: 0.4s
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
/* .decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
    }
.deco-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1
    }
.deco-1 {
    width: 100px;
    height: 100px;
    background: var(--white);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite
    }
.deco-2 {
    width: 60px;
    height: 60px;
    background: var(--white);
    top: 60%;
    right: 5%;
    animation: float 4s ease-in-out infinite reverse
    }
.deco-3 {
    width: 80px;
    height: 80px;
    background: var(--white);
    bottom: 20%;
    left: 5%;
    animation: float 5s ease-in-out infinite
    }
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        } 50% {
        transform: translateY(-20px);
        }
    } */
/* Stats Section */
.stats-section {
    background: var(--white);
    color: var(--text-dark);
    padding: 6rem 0
}

.stats-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
    position: relative
}

.stats-subtitle::before,
.stats-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--text-gray)
}

.stats-subtitle::before {
    left: -120px
}

.stats-subtitle::after {
    right: -120px
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    /* color: var(--text-dark); */
    line-height: 1.2
}

/* Services Section */
.services-section {
    background: var(--secondary-blue);
    padding: 6rem 0;
    position: relative;
    overflow: hidden !important
}

.services-container {
    background: white;
    border-radius: 50px;
    padding: 4rem 3rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2
}

.section-subtitle {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.services-content {
    /* width: 100%; */
}

/* Feature Cards - Correção do layout */
.feature-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%
}

.feature-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 10px 30px rgba(37, 68, 239, 0.2);
    border-color: var(--primary-blue)
}

.feature-card .card-body {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem
}

.feature-card .card-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.feature-card .card-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1
}

/* Pricing Section */
.case-studies-section {
    background: var(--white);
    color: var(--text-dark);
    padding: 6rem 0;
    position: relative
}

.case-studies-section .section-title {
    color: var(--text-dark)
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%
}

.pricing-card:hover {
    transform: translatey(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(37, 68, 239, 0.2)
}

.pricing-card .card-body {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%
}

.pricing-card .card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem
}

.pricing-card .card-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem
}

.price {
    margin-bottom: 2rem
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue)
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-gray)
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

/* paying methods */
.pagamentos {
    padding: 80px 20px;
    background: #f0f3f8;
    position: relative;
    overflow: hidden
}

.pagamentos__titulo {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.pagamentos__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto
}

.card-paying {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.card-paying:hover {
    transform: translatey(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1)
}

/* Efeito de borda colorida no hover */
.card-paying::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease
}

.pagamento--boleto::before {
    background: linear-gradient(90deg, #2563eb, #1d4ed8)
}

.pagamento--pix::before {
    background: linear-gradient(90deg, #059669, #047857)
}

.card-paying:hover::before {
    height: 6px
}

.card__icone {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    transition: all 0.3s ease
}

.pagamento--boleto .card__icone {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe)
}

.pagamento--pix .card__icone {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0)
}

.card:hover .card__icone {
    transform: scale(1.1)
}

.card__icone img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
}

.card__titulo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.3s ease
}

.pagamento--boleto .card__titulo {
    color: #1e40af
}

.pagamento--pix .card__titulo {
    color: #047857
}

.card__descricao {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

.card__descricao strong {
    color: #334155;
    font-weight: 600
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:nth-child(2) {
    animation-delay: 0.1s
}

/* Responsivo */
@media (max-width: 768px) {
    .pagamentos {
        padding: 60px 20px
    }

    .pagamentos__titulo {
        font-size: 2rem;
        margin-bottom: 40px
    }

    .pagamentos__cards {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .card-paying {
        width: 100%;
        max-width: 400px;
        padding: 30px 25px
    }

    .card__icone {
        width: 70px;
        height: 70px
    }

    .card__icone img {
        width: 40px;
        height: 40px
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        margin-top: 7rem;
        padding: 2rem 0
    }

    .hero-section {
        padding-bottom: 0rem
    }

    .services-content,
    .image-mockup-area {
        width: 100% !important
    }

    .informative-card-header {
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: center
    }

    .lead {
        padding: 0 !important
    }

    .stats-section {
        padding: 6rem 0 0 0 !important
    }

    .background-fone-area img {
        height: auto !important;
        margin-right: 3rem !important
    }

    .carousel-indicators {
        margin-bottom: 0
    }

    .pagamentos {
        padding: 40px 15px
    }

    .pagamentos__titulo {
        font-size: 1.75rem
    }

    .card-paying {
        padding: 25px 20px
    }

    .card__titulo {
        font-size: 1.25rem
    }

    .card__descricao {
        font-size: 0.9rem
    }

    .contacts-links button {
        width: 100% !important
    }

    .copy_area {
        flex-direction: column;
        gap: 1rem
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .card-paying {
        transition: none;
        animation: none
    }

    .card-paying:hover {
        transform: none
    }

    .card-paying__icone {
        transition: none
    }

    .card-paying:hover .card__icone {
        transform: none
    }
}

/* Process Section */
.process-section {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative
}

.process-container {
    background: white;
    border-radius: 100px;
    padding: 4rem 3rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2
}

.process-section .section-title {
    color: var(--primary-dark)
}

.process-step {
    text-align: center;
    position: relative
}

.process-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: white;
    font-size: 2rem
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.8
}

.process-connector {
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    z-index: -1
}

.process-step:last-child .process-connector {
    display: none
}

/* Testimonial Section */
.testimonial-section {
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0;
    position: relative
}

.testimonial-section .section-title {
    color: white
}

.testimonial-content {
    margin-top: 3rem
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: white
}

.testimonial-description {
    font-size: 1.1rem;
    color: #b8bcc8;
    line-height: 1.8;
    margin-bottom: 2rem
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--orange-primary);
    font-weight: 600
}

/* Testimonial Decorative Elements */
.testimonial-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.testimonial-deco-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0.1;
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite
}

.testimonial-deco-2 {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--orange-secondary);
    border-radius: 50%;
    opacity: 0.1;
    bottom: 20%;
    right: 15%;
    animation: float 4s ease-in-out infinite reverse
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .hero-image-wrapper,
    .services-image-wrapper {
        width: 300px;
        height: 300px
    }

    .services-container,
    .process-container {
        border-radius: 50px;
        padding: 3rem 2rem;
        margin: 0 1rem
    }

    .process-connector {
        display: none
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
        margin-top: 2rem
    }

    .hero-image-wrapper,
    .services-image-wrapper {
        width: 250px;
        height: 250px
    }

    .mockup-container {
        flex-direction: column
    }

    .phone-carousel-section,
    .contact-form {
        width: 100% !important
    }

    .services-container,
    .process-container {
        border-radius: 30px;
        padding: 2rem 1.5rem;
        margin: 0 0.5rem
    }

    .stats-subtitle::before,
    .stats-subtitle::after {
        display: none
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem
    }

    .section-title {
        font-size: 1.5rem
    }

    .testimonial-text {
        font-size: 1.4rem
    }
}

/* Process Section */
.process-section {
    background: var(--secondary-blue);
    padding: 6rem 0;
    position: relative
}

.process-container {
    background: white;
    border-radius: 50px;
    padding: 4rem 3rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2
}

.process-section .section-title {
    color: var(--text-dark)
}

.process-step {
    text-align: center;
    position: relative;
    margin-bottom: 3rem
}

.process-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 68, 239, 0.3)
}

.process-step h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.process-step p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 6rem 0
}

.testimonials-section .section-title {
    color: var(--text-dark)
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%
}

.testimonial-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 15px 40px rgba(37, 68, 239, 0.1)
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-blue);
    padding: 0.5rem
}

.author-info h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem
}

/* Contact Section */
.contact-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.2
}

.contacts-links button {
    width: 70%;
    border: none;
    outline: none;
    border-radius: 15px
}

.contacts-links a {
    text-decoration: none;
    color: #212429
}

.links-content {
    text-align: start
}

#button-title {
    font-weight: bold
}

.links-content p {
    margin: 0
}

.img-contact-area {
    background: #fafafa;
    border-radius: 10px;
    padding: 0 1rem;
    margin: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.15);
    padding: 0.8rem
}

.contacts-links img {
    height: 100%;

}

.contact-section {
    background-image: linear-gradient(75deg, var(--primary-blue), var(--secondary-blue), var(--secondary-blue));
    color: white
}

.contact-container {
    /* background: white; */
    border-radius: 50px;
    padding: 4rem 3rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
    justify-content: center
}

.contact-section .section-title {
    /* color: var(--text-dark); */
}

.contact-form {
    max-width: 600px;
    margin: 0 auto
}

.form-group {
    margin-bottom: 2rem
}

.form-group label {
    display: block;
    /* color: var(--text-dark); */
    font-weight: 600;
    margin-bottom: 0.5rem
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white)
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 68, 239, 0.1)
}

.form-control::placeholder {
    color: var(--text-gray)
}

textarea.form-control {
    resize: vertical;
    min-height: 120px
}

/* Footer */
.footer {
    background: #212429;
    color: white;
    padding: 3rem 0 1rem 0
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-section h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.footer-section ul {
    list-style: none;
    padding: 0
}

.footer-section ul li {
    margin-bottom: 0.5rem
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-section ul li a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8)
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 4rem 0;
    text-align: center
}

.cta-section .section-title {
    color: white;
    margin-bottom: 1rem
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block
}

.btn-white:hover {
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: var(--white)
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-description {
        font-size: 1rem
    }

    .hero-mockup img {
        height: 25rem
    }

    .section-title {
        font-size: 2rem
    }

    .services-container,
    .process-container,
    .contact-container {
        border-radius: 30px;
        padding: 2rem 1.5rem;
        margin: 0 1rem
    }

    .background-fone-area img {
        height: auto !important;
        margin-right: 3rem !important
    }

    .hero-benefits {
        text-align: center;
        flex-wrap: wrap;
        justify-content: center
    }

    .founder-info {
        flex-direction: column;
        text-align: center
    }

    .founder-details {
        text-align: center;
        margin-top: 1rem
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .cta-buttons .btn {
        width: 100%
    }
}

@media (max-width: 576px) {

    .services-content,
    .image-mockup-area {
        width: 100% !important
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-mockup img {
        height: 18rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .pricing-card .card-body,
    .feature-card .card-body {
        padding: 1.5rem
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 5px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(37, 68, 239, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000
}

.back-to-top.show {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    transform: translatey(-3px);
    box-shadow: 0 6px 20px rgba(37, 68, 239, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue))
}

/* Enhanced Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef
}

.card-hover:hover {
    transform: translatey(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue)
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef
}

.feature-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue)
}

.feature-card:hover .feature-icon {
    transform: scale(1.1)
}

.feature-icon {
    transition: transform 0.3s ease
}

/* Modern Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    position: relative;
    background: transparent
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease
}

.navbar-toggler-icon::before {
    top: -8px
}

.navbar-toggler-icon::after {
    top: 8px
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0
}

/* Modern Mobile Menu Dropdown */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        padding: 20px;
        border: 1px solid #e9ecef
    }

    .navbar-nav {
        gap: 10px
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 10px;
        transition: all 0.3s ease;
        margin: 0 !important;
        justify-content: flex-start !important;
    }

    .nav-link:hover {
        background-color: #f8f9fa;
        color: var(--primary-blue) !important;
        transform: translatex(5px)
    }

    .btn-cta {
        margin-top: 15px;
        width: 100%;
        text-align: center;
        padding: 15px
    }
}

/* WhatsApp Float Button (similar to reference) */
/* .whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
} */
/* Enhanced Icon Colors (inspired by reference) */
.icon-purple {
    color: #8b5cf6
}

.icon-teal {
    color: #14b8a6
}

.icon-blue {
    color: #3b82f6
}

.icon-orange {
    color: #f59e0b
}

.icon-red {
    color: #ef4444
}

.icon-green {
    color: #10b981
}

/* Enhanced gradient backgrounds */
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth
}

/* Enhanced button animations */
.scroll-vantagens {
    transition: all 0.3s ease
}

.scroll-vantagens:hover {
    transform: translatey(-2px);
    box-shadow: 0 8px 25px rgba(37, 68, 239, 0.3)
}

.scroll-vantagens:hover i {
    transform: translatex(5px)
}

.scroll-vantagens i {
    transition: transform 0.3s ease
}

/* Color Variables - Novo esquema de cores */
a {
    text-decoration: none
}

/* Indicadores do carousel */
.carousel-indicators {
    align-items: center
}

#mockupAreaCarousel .carousel-indicators [data-bs-target],
#mockupCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #90caf9;
    /* azul claro para inativos */
    border: none;
    transition: all 0.3s ease;
    margin: 0 6px;
    border: 2px transparent
}

#mockupAreaCarousel .carousel-indicators .active,
#mockupCarousel .carousel-indicators .active {
    background-color: #1565c0;
    /* azul escuro para ativo */
    border: 2px solid #0d47a1;
    /* borda mais escura */
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
    margin: 0 6px
}

.services-container-mockup {
    /* background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)); */
    background-color: #f8f9fa;
    border-radius: 20px;
    position: relative;
    padding: 4rem 0
}

.background-fone-area {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    margin: 0 auto;
    overflow: hidden
}

.background-cta-area {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0 auto
}

.background-fone-area img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-right: 5rem
}

.main-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    /* max-width: 500px; */
    width: 100vw;
    height: 100%
}

.title {
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 0.5px
}

.phone-container {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex
}

.phone-mockup {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2))
}

.phone-frame {
    width: 296px;
    height: 650px;
    /* background: #000; */
    border-radius: 35px;
    /* position: relative; */
    overflow: hidden;
    /* box-shadow: 0 0 0 8px #333, 0 0 0 10px #000; */
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    padding: 35px 20px 20px;
    box-sizing: border-box
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.app-icon i {
    color: white;
    font-size: 24px
}

.app-content {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)
}

.app-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px
}

.bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    position: relative;
    overflow: hidden
}

.bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: loading 2s ease-in-out infinite
}

.bar:nth-child(1)::after {
    width: 70%;
    animation-delay: 0s
}

.bar:nth-child(2)::after {
    width: 45%;
    animation-delay: 0.3s
}

.bar:nth-child(3)::after {
    width: 85%;
    animation-delay: 0.6s
}

.bar:nth-child(4)::after {
    width: 30%;
    animation-delay: 0.9s
}

@keyframes loading {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite
}

.floating-dot:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s
}

.floating-dot:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s
}

.floating-dot:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .main-container {
        padding: 40px 20px
    }

    .title {
        font-size: 20px
    }

    .phone-frame {
        width: 160px;
        height: 320px
    }

    .phone-notch {
        width: 100px;
        height: 20px
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: var(--default-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--default-color);
    transform: scale(1.1);
    text-decoration: none
}

.whatsapp-float i {
    margin-top: 2px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        font-size: 24px
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 25px;
        font-size: 20px
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 25px;
        font-size: 20px
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar{
        background-color: #f9f9f9 !important;
    }

    .testegratis{
        padding: 20px !important;
    }

    .testegratis .stepper-header .stepper{
        flex-wrap: wrap;
    }

    .testegratis .stepper-header .stepper .step{
        font-size: 14px !important;
        width: 100% !important;
        flex: initial !important;
    }

    .testegratis .cookies-title{
        margin-bottom: 10px !important;
        font-size: 21px !important;
    }

    .testegratis .step-navigation button{
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .hero-section {
        text-align: center
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem
    }

    .hero-buttons .btn {
        width: 100%
    }

    .display-5 {
        font-size: 2rem
    }

    .display-6 {
        font-size: 1.5rem
    }

    .solutions-image {
        max-width: 0 !important
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem
    }

    .hero-content p {
        font-size: 1rem
    }

    .process-number,
    .service-icon {
        width: 60px !important;
        height: 60px !important
    }

    .process-number {
        font-size: 1.5rem !important
    }

    .service-icon i {
        font-size: 1.5rem !important
    }

    .footer-section {
        text-align: center !important;
    }

}

/* Estilos para alternância de preços mensal/anual */
.pricing-toggle-container {
    margin-bottom: 3rem
}

.pricing-toggle {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative
}

.pricing-toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 68, 239, 0.3)
}

.pricing-toggle-btn:hover:not(.active) {
    color: var(--primary-blue);
    background: rgba(37, 68, 239, 0.1)
}

.discount-badge {
    background: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 12px;
    font-weight: 700
}

/* Animação suave para mudança de preços */
.price-value {
    transition: all 0.3s ease
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem
    }

    .discount-badge {
        font-size: 0.7rem;
        padding: 1px 4px
    }
}

/* Cookie Consent Popup Styles */
.cookieDesc {
    color: var(--white);
}

.cookieConsentContainer {
    z-index: 999;
    width: 450px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    opacity: 0.9;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: "ofc_font", arial, "sans-serif";
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: "ofc_font", arial, "sans-serif";
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
    background: var(--primary-blue);
    padding: 12px 20px;
    text-align: center;
    transition: background 0.3s;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: var(--secondary-blue);
    color: whitesmoke;
}

.link-cookie-policy {
    opacity: 0.6;
}

.link-cookie-policy:hover {
    opacity: 0.8;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100% !important;
        border-radius: 0;
    }
}

/* sliders indicators */
.carousel-indicators [data-bs-target] {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #666;
}

.carousel-indicators [data-bs-target]::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.social-links {
    transition: .4s ease-in-out
}

.footer-section svg:hover,
.footer-section ul li a:hover {
    color: var(--primary-blue);
    transform: scale(1.1)
}