
       /* Hero Section - Estilo Refinado */
:root {
    --primary: #1E415C;
    --secondary: #A6B2CE;
    --accent: #BFADC3;
    --light: #C3C1C4;
    --white: #ffffff;
    --black: #222222;
    --primary-light: #2A567B;
    --secondary-dark: #8A96B2;
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
        }
        /* MARCAS DAGUA */
         /* Aumenta a imagem em telas menores (celulares) */
            @media (max-width: 768px) {
                .responsive-image {
                width: 30% !important; /* Aumenta para 30% da largura da tela */
                max-width: 150px !important; /* Ou um valor fixo maior se preferir */
                }
            }
      /* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 200px; /* Tamanho padrão para desktop */
    height: auto;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: load 2s ease-in-out infinite;
}

@keyframes load {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .preloader-logo {
        max-width: 150px; /* Reduz o tamanho em dispositivos menores */
    }
    .loading-bar {
        width: 150px; /* Barra de loading também menor para combinar */
    }
}

/* Ajuste extra para telas muito pequenas (opcional) */
@media (max-width: 480px) {
    .preloader-logo {
        max-width: 120px;
    }
    .loading-bar {
        width: 120px;
    }
}
        /* Cursor personalizado */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent);
            mix-blend-mode: difference;
            pointer-events: none;
            z-index: 999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 998;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
        }
        /* Desativa o cursor personalizado em telas menores (ex: celulares) */
        @media (max-width: 768px) {
            .cursor, .cursor-follower {
                display: none !important; /* Garante que nenhum estilo sobrescreva */
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            background-color: rgba(30, 65, 92, 0.8);
        }

        header.scrolled {
            padding: 15px 5%;
            background-color: rgba(30, 65, 92, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

       .imagemlogo{
        width: 3%;
       }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 40px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 5px;
            transition: all 0.3s ease;
        }
      
      /* Hero Section Estilizada */
    .hero {
        background-color: var(--primary);
        color: var(--white);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        padding: 40px 20px;
    }
    
    .hero-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 40px 0;
        position: relative;
        z-index: 2;
    }
    
    .hero-logo {
        margin-bottom: 30px;
    }
    
    .hero-logo .logo-img {
        max-width: 600px;
        height: auto;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    }
    
    .hero-description {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        line-height: 1.2;
        color: var(--light);
        margin-bottom: 2.5rem;
        max-width: 90%;
        position: relative;
    }
    
    .hero-description::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--secondary), transparent);
        margin-top: 20px;
    }
    
    /* Estatísticas */
    .hero-stats {
        display: flex;
        gap: 25px;
        margin: 40px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
    .stat-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 5px;
        background: linear-gradient(to right, var(--secondary), #f8b195);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .stat-label {
        font-family: 'Open Sans', sans-serif;
        font-size: 0.9rem;
        color: var(--light);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    /* Botões */
    .hero-btns {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 30px;
        border-radius: 50px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary {
        background-color: var(--accent);
        color: var(--primary);
        box-shadow: 0 5px 20px rgba(191, 173, 195, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(191, 173, 195, 0.4);
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: 0.6s;
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }
    
    .btn-secondary {
        background-color: transparent;
        color: var(--secondary);
        border: 2px solid var(--secondary);
    }
    
    .btn-secondary:hover {
        background-color: var(--secondary);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(166, 178, 206, 0.3);
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }
    
    .btn-primary .btn-icon {
        animation: arrowBounce 1.5s infinite ease-in-out;
    }
    
    .btn-secondary .btn-icon {
        animation: arrowPulse 2s infinite ease-in-out;
    }
    
    @keyframes arrowBounce {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
    
    @keyframes arrowPulse {
        0%, 100% { transform: translateY(0); opacity: 1; }
        50% { transform: translateY(4px); opacity: 0.8; }
    }
    
    /* Container da Imagem */
    .hero-image-container {
        position: relative;
        flex: 0 0 45%;
        max-width: 500px;
    }
    
    .hero-image-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        position: relative;
        z-index: 3;
        transition: transform 0.5s ease;
    }
    
    /* Efeitos de Borda Modernos */
    .image-border-effect {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 3px solid var(--secondary);
        border-radius: 25px;
        z-index: 1;
        opacity: 0.5;
        animation: borderPulse 4s infinite ease-in-out;
    }
    
    .image-border-effect-2 {
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border: 2px dashed rgba(255,255,255,0.3);
        border-radius: 30px;
        z-index: 2;
        opacity: 0.7;
    }
    
    @keyframes borderPulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.02); opacity: 0.8; }
    }
    
    /* Badges */
    .professional-badges {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .badge {
        background-color: var(--primary-light);
        color: var(--secondary);
        padding: 10px 20px;
        border-radius: 50px;
        font-family: 'Open Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        border: 1px solid var(--secondary);
        backdrop-filter: blur(5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Scroll Indicator */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .scroll-arrow {
        width: 24px;
        height: 40px;
        border: 2px solid var(--secondary);
        border-radius: 12px;
        position: relative;
    }
    
    .scroll-arrow::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background-color: var(--secondary);
        border-radius: 2px;
        animation: scrollDown 2s infinite;
    }
    
    @keyframes scrollDown {
        0% { top: 8px; opacity: 1; }
        100% { top: 16px; opacity: 0; }
    }
    
    /* Responsividade */
    @media (max-width: 1024px) {
        .hero-content {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }
        
        .hero-logo {
            margin: 0 auto 30px;
        }
        
        .hero-description {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-description::after {
            margin: 20px auto 0;
        }
        
        .hero-stats {
            justify-content: center;
        }
        
        .hero-btns {
            justify-content: center;
        }
        
        .hero-image-container {
            margin-top: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-stats {
            flex-wrap: wrap;
        }
        
        .stat-item {
            flex: 1 1 120px;
        }
        
        .hero-btns {
            flex-direction: column;
            gap: 15px;
        }
        
        .btn {
            width: 100%;
            justify-content: center;
        }
        
        .hero-logo .logo-img {
            max-width: 280px;
        }
    }
        /* About Section */
        .section {
            padding: 100px 10%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title .title-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 6rem;
            font-weight: 700;
            color: rgba(30, 65, 92, 0.05);
            z-index: -1;
            white-space: nowrap;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
        }

        .about-img.active {
            opacity: 1;
            transform: translateX(0);
        }

        .about-img img {
            width: 100%;
            max-width: 600px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-img::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 5px solid var(--accent);
            border-radius: 20px;
            top: 20px;
            left: 20px;
            z-index: -1;
        }

        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s ease;
        }

        .about-text.active {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--black);
            margin-bottom: 20px;
        }

        .skills {
            margin-top: 30px;
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .skill-bar {
            height: 10px;
            background-color: var(--light);
            border-radius: 5px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 5px;
            transition: width 1.5s ease;
        }

        /* ==================== */
/* SERVICES SECTION */
/* ==================== */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%231E415C" opacity="0.03" d="M0,0 L100,0 L100,100 Q50,80 0,100"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
    max-width: 800px;
    line-height: 1.3;
}

.section-title span {
    color: var(--primary-light);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    max-width: 500px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    padding: 8%;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.card-front {
    align-items: center;
    text-align: center;
    justify-content: center;
}

.card-back {
    transform: rotateY(180deg);
    justify-content: space-between;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    background-color: var(--icon-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-badge {
    display: inline-block;
    background-color: var(--icon-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--black);
    line-height: 1.6;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--icon-color);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2A567B;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

.section-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: var(--secondary-dark);
}

.section-footer a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.section-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.section-footer a:hover::after {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        height: 380px;
    }
    
    .card-front, .card-back {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
}
      
        /* Estilos da Seção Blog em Breve */
        .upcoming-blog {
            background: linear-gradient(135deg, rgba(30, 65, 92, 0.03) 0%, rgba(166, 178, 206, 0.05) 100%);
            padding-bottom: 80px;
        }

        .blog-teaser {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 20px;
            align-items: center;
        }

        .blog-content {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .badge-coming-soon {
            position: relative;
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(191, 173, 195, 0.4);
        }

        .pulse-effect {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 30px;
            background: var(--accent);
            animation: pulse 2s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            70% { transform: scale(1.3); opacity: 0; }
            100% { opacity: 0; }
        }

        .blog-headline {
            font-size: 2.3rem;
            color: var(--primary);
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .blog-headline span {
            position: relative;
        }

        .blog-headline span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(166, 178, 206, 0.4);
            z-index: -1;
            border-radius: 4px;
        }

        .blog-message {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: var(--black);
        }

        .blog-message p:first-child {
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .blog-message p:first-child::before {
            content: '"';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 2rem;
            color: var(--accent);
            line-height: 1;
        }

        .blog-topics {
            margin: 25px 0;
            padding-left: 0;
        }

        .blog-topics li {
            list-style: none;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            border-radius: 8px;
            background: rgba(166, 178, 206, 0.1);
            transition: all 0.3s ease;
        }

        .blog-topics li:hover {
            background: rgba(166, 178, 206, 0.2);
            transform: translateX(5px);
        }

        .blog-topics i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .teaser-text {
            font-weight: 600;
            color: var(--primary-light);
        }

        .subscription-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 500px;
        }

        .email-input {
            flex: 1;
            min-width: 200px;
            padding: 15px 20px;
            border: 1px solid var(--secondary);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .email-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 65, 92, 0.1);
        }

        .subscribe-btn {
            background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: block;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 65, 92, 0.3);
        }

        .blog-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .image-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(30, 65, 92, 0.2);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
        }

        .image-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(166, 178, 206, 0.4) 0%, transparent 70%);
            z-index: 0;
            animation: glow-pulse 4s infinite alternate;
        }

        @keyframes glow-pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .author-signature {
            text-align: center;
            margin-top: 20px;
        }

        .author-signature span {
            display: block;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .author-signature small {
            color: var(--secondary-dark);
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .blog-headline {
                font-size: 1.8rem;
            }
            
            .blog-content, .blog-image {
                min-width: 100%;
            }
            
            .blog-image {
                order: -1;
                margin-bottom: 30px;
            }
            
            .subscription-form {
                flex-direction: column;
            }
            
            .subscribe-btn {
                justify-content: center;
            }
        }
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary) 0%, #0f2a3d 100%);
            color: var(--white);
        }

        .contact .section-title h2 {
            color: var(--white);
        }

        .contact .section-title .title-bg {
            color: rgba(255, 255, 255, 0.05);
    
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
        }

        .contact-info.active {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 60px;
            margin-top: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(166, 178, 206, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 1.2rem;
            color: var(--secondary);
        }

        .info-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .info-text p, .info-text a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .info-text a:hover {
            color: var(--secondary);
        }

        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s ease;
        }

        .contact-form.active {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--light);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(166, 178, 206, 0.3);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(30, 65, 92, 0.2);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(30, 65, 92, 0.3);
        }
         /* Estilos do Cabeçalho de Marketing */
        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .header-content {
            flex: 1;
            min-width: 300px;
        }

        .testimonial-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 700;
        }

        .testimonial-title .highlight {
            color: var(--accent);
            position: relative;
        }

        .testimonial-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(191, 173, 195, 0.3);
            z-index: -1;
            border-radius: 4px;
        }

        .testimonial-subtitle {
            font-size: 1.1rem;
            color: var(--black);
            line-height: 1.6;
            max-width: 700px;
        }

        .results-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 15px;
            padding: 20px;
            color: white;
            min-width: 120px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(30, 65, 92, 0.2);
            transition: transform 0.3s ease;
        }

        .results-badge:hover {
            transform: translateY(-5px) scale(1.03);
        }

        .big-number {
            font-size: 2.8rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .small-text {
            font-size: 0.9rem;
            display: block;
            margin-top: 5px;
            line-height: 1.3;
        }
        .testimonial-carousel {
            max-width:1065px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(30, 65, 92, 0.2);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

      .testimonial-print {
        width: 100%;
        border-right: 1px solid rgb(229, 229, 229);
        height:40vh;
        max-height: 500px;
        object-fit: contain;
        transition: filter 0.3s ease;
        }

        .empty-slide {
            background: var(--secondary);
            opacity: 0.1;
            border: 2px dashed var(--primary);
            border-radius: 10px;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            gap: 20px;
        }

        .carousel-prev, .carousel-next {
            background: var(--primary);
            margin-top: 8%;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-prev:hover, .carousel-next:hover {
            background: var(--primary-light);
            transform: scale(1.1);
        }

        .carousel-dots {
            padding-top: 8%;
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Responsividade */
        @media (min-width: 768px) {
            .carousel-slide {
                min-width: 50%;
            }
            
            .testimonial-print {
                max-height: 400px;
            }
        }

        @media (max-width: 767px) {
            .carousel-controls {
                margin-top: 15px;
            }
            
            .carousel-prev, .carousel-next {
                width: 35px;
                height: 35px;
            }
        }
       
        /* Estilos da Seção Consultoria */
.school-consultancy {
    background: linear-gradient(135deg, rgba(191, 173, 195, 0.05) 0%, rgba(166, 178, 206, 0.08) 100%);
    padding-bottom:80px;
}

.consultancy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.experience-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(30, 65, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.years-badge {
    background: var(--primary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(30, 65, 92, 0.2);
}

.years-badge span {
    font-size: 2rem;
    line-height: 1;
}

.years-badge small {
    font-size: 0.7rem;
    text-align: center;
    display: block;
    margin-top: 5px;
}

.experience-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.institution {
    color: var(--secondary-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.expertise-list {
    padding-left: 0;
    margin-top: 30px;
}

.expertise-list li {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.expertise-list i {
    background: rgba(166, 178, 206, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pulse-icon {
    animation: subtle-pulse 3s infinite ease-in-out;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.expertise-list h4 {
    color: var(--primary-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.expertise-list p {
    color: var(--black);
    line-height: 1.5;
}

.current-work {
    margin-top: 40px;
    border-top: 1px dashed var(--secondary);
    padding-top: 20px;
}

.apae-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(191, 173, 195, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.apae-badge img {
    width: 50px;
    height: auto;
}

.apae-badge span {
    font-weight: 600;
    color: var(--primary);
}

.mission-statement {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.mission-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(30, 65, 92, 0.1);
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.mission-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(166, 178, 206, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.mission-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    font-family: serif;
}

.mission-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.highlight-item i {
    background: rgba(166, 178, 206, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.professional-photo {
    margin-top: 40px;
    text-align: center;
}

.professional-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.photo-signature {
    margin-top: 15px;
}

.photo-signature span {
    display: block;
    font-weight: 700;
    color: var(--primary);
}

.photo-signature small {
    color: var(--secondary-dark);
    font-size: 0.9rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(30, 65, 92, 0.3);
}

.cta-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .consultancy-container {
        flex-direction: column;
    }
    
    .experience-card, .mission-statement {
        min-width: 100%;
    }
    
    .mission-text p {
        padding-left: 20px;
        font-size: 1.1rem;
    }
    
    .professional-photo img {
        width: 150px;
        height: 150px;
    }
}
        /* Footer */
        footer {
            background-color: #0a1a27;
            color: var(--light);
            padding: 50px 10% 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            text-align: left;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-col p {
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(166, 178, 206, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links li {
            list-style: none;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 0.8rem;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(166, 178, 206, 0.1);
        }

        /* Modal de Agendamento */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            padding: 40px;
            position: relative;
            transform: translateY(-50px);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .modal.show .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            transform: rotate(90deg);
            color: var(--accent);
        }

        .modal h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .calendar-container {
            margin-bottom: 30px;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }

        .time-slot {
            background-color: #f5f5f5;
            border: 1px solid var(--light);
            border-radius: 8px;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .time-slot:hover, .time-slot.selected {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .modal-btn {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn-primary {
            background-color: var(--primary);
            color: var(--white);
            border: none;
        }

        .modal-btn-primary:hover {
            background-color: #15334d;
        }
        :root {
    --primary: #1E415C;
    --secondary: #A6B2CE;
    --accent: #BFADC3;
    --light: #C3C1C4;
    --white: #ffffff;
    --black: #222222;
    --primary-light: #2A567B;
    --secondary-dark: #8A96B2;
    --highlight: #FFD166;
}

/* ESTILOS GERAIS DA LOJA */
.book-store {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 5rem 2rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* CABEÇALHO */
.store-header {
    text-align: center;
    margin-bottom: 4rem;
}

.store-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(90deg, var(--highlight), #FFB347);
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
    animation: pulse 2s infinite;
}

.store-title {
    font-size: 3rem;
    color: var(--primary);
    margin: 0.5rem 0;
    line-height: 1.2;
}

.store-title span {
    color: var(--primary-light);
    position: relative;
}

.store-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 3px;
}

.store-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-dark);
    margin-top: 1rem;
}

/* PRODUTO DESTAQUE */
.featured-product {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.book-mockup {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.book-cover {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.book-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 70%);
    filter: blur(10px);
    z-index: 1;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.sparkle {
    position: absolute;
    background-color: var(--highlight);
    border-radius: 50%;
    opacity: 0;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.thumb {
    width: 50px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb.active {
    background-color: var(--primary);
    width: 80px;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--light);
    font-size: 1.2rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.discount-badge {
    background-color: #FF5A5F;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.countdown-box {
    background-color: rgba(30, 65, 92, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.countdown-box p {
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    background-color: var(--primary);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.benefits-list i {
    color: var(--primary-light);
    position: absolute;
    left: 0;
    top: 3px;
}

.pre-order-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pre-order-btn:hover {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 65, 92, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-dark);
}

.trust-item i {
    color: var(--primary-light);
}

/* SEÇÃO DE BÔNUS */
.bonus-section {
    margin: 5rem 0;
    text-align: center;
}

.bonus-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bonus-section h3 i {
    color: var(--highlight);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.pop:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(191, 173, 195, 0.1), rgba(166, 178, 206, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.bonus-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ANIMAÇÕES */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 209, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 209, 102, 0); }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
     .imagemlogo{
        width: 15%;
       }
         /* Hero Section Estilizada */
    .hero {
        background-color: var(--primary);
        margin-top: 20%;
        color: var(--white);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        padding: 40px 20px;
    }
     /* Scroll Indicator */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
       
    .store-title {
        font-size: 2.2rem;
    }

    .store-subtitle {
        font-size: 1.1rem;
    }
    
    .product-details h2 {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    /* Estilos da Seção Consultoria */
    .school-consultancy {
        background: linear-gradient(135deg, rgba(191, 173, 195, 0.05) 0%, rgba(166, 178, 206, 0.08) 100%);
        margin-top:-200px;
    }

}

@media (max-width: 480px) {
    .book-store {
        padding: 3rem 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}
        /* Responsividade */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .about-content {
                flex-direction: column;
            }

            .contact-container {
                flex-direction: column;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 80px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 0 5%;
                text-align: center;
            }

            .hero-shapes {
                display: none;
            }

            .hero-btns {
                justify-content: center;
            }

            .section {
                padding: 80px 5%;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title .title-bg {
                font-size: 4rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title .title-bg {
                font-size: 3rem;
            }
        }
  