  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,500&family=Montserrat:wght@300;400;600&display=swap');

        :root {
            --primary-gold: #c5a059;
            --dark-blue: #1a2e44;
            --whatsapp-green: #25D366;
            --whatsapp-dark: #128C7E;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
            background-color: #faf9f6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Cormorant Garamond', serif;
        }

        .gold-text { color: var(--primary-gold); }
        .bg-gold { background-color: var(--primary-gold); }
        .bg-dark-blue { background-color: var(--dark-blue); }
        
        .bg-whatsapp { background-color: var(--whatsapp-green); }
        .bg-whatsapp:hover { background-color: var(--whatsapp-dark); }

        .hero-overlay {
            background: linear-gradient(rgba(26, 46, 68, 0.88), rgba(26, 46, 68, 0.65));
        }

        .profile-mask {
            border-radius: 20px;
            box-shadow: 15px 15px 0px var(--primary-gold);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .nav-link.active {
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-gold);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .accordion-item.active .accordion-content {
            max-height: 1200px;
        }
        .accordion-item.active .chevron-icon {
            transform: rotate(180deg);
        }

        .chevron-icon { 
            transition: transform 0.3s ease;
        }

        .floating-cta { 
            animation: float 4s ease-in-out infinite; 
        }

        @keyframes float { 
            0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); 
            } 
        }

        .custom-input {
            width: 100%;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 16px;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            display: block;
        }
        .custom-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            background-color: #fff;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover { transform: scale(1.1); }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

         .btn-conversion {
            position: relative; overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-conversion:hover { 
            transform: scale(1.03); filter: brightness(1.1);
        }

        .btn-conversion::after {
            content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: rgba(255,255,255,0.2); transform: rotate(45deg); animation: shine 4s infinite;
        }

        .book-cover-wrapper {
            transition: transform 0.5s ease;
            transform-style: preserve-3d;
            box-shadow: 15px 15px 30px rgba(0,0,0,0.2);
            position: relative;
            width: 224px; /* w-56 */
            height: 288px; /* h-72 */
        }

        .book-cover-wrapper:hover {
            transform: rotateY(-12deg);
        }

        .book-lombada {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 12px;
            background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
            z-index: 20;
            border-radius: 2px 0 0 2px;
        }

        .img-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 4px 4px 0;
        }

        .btn-shine {
            position: relative;
            overflow: hidden;
        }
        .btn-shine::after {
            content: "";
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: rgba(255,255,255,0.2);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            20%, 100% { transform: translateX(100%) rotate(45deg); }
        }

         /* Estilo para os cards Premium */
        .card-premium {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card-presencial {
            background: var(--dark-blue);
            color: white;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 25px 50px -12px rgba(26, 46, 68, 0.3);
        }

        .card-presencial:hover {
            transform: translateY(-12px);
            box-shadow: 0 35px 60px -15px rgba(197, 160, 89, 0.2);
        }

        .card-online {
            background: white;
            border: 1px solid #e2e8f0;
        }

        .card-online:hover {
            transform: translateY(-12px);
            border-color: var(--primary-gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Badge de "Mais Procurado" */
        .badge-premium {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary-gold);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .card-presencial .icon-circle {
            background: rgba(197, 160, 89, 0.15);
            color: var(--primary-gold);
            border: 1px solid rgba(197, 160, 89, 0.3);
        }

        .card-online .icon-circle {
            background: #f8fafc;
            color: #94a3b8;
        }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    background: rgba(0, 0, 0, 0.85); /* fundo escuro transparente */
    color: #fff;
    
    padding: 12px 20px;
    border-radius: 8px;
    
    border: 1px solid #e5e7eb; /* borda clara */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); /* sombra para destacar */
    
    display: flex;
    align-items: center;
    gap: 15px;
    
    z-index: 9999;
    font-size: 14px;
}

.cookie-banner button {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.nav-link {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 1px;
}