
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f9fafb;
            line-height: 1.6;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 10px;
            text-align: center;
        }
        
        .logo-container {
            margin-bottom: 30px;
        }
        
        .logo-container img {
            max-width: 200px;
            height: auto;
            filter: brightness(0) invert(1);
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 900;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .hero-cta {
            display: inline-block;
            padding: 18px 40px;
            background: #10b981;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        }
        
        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
        }
        
		/* ADICIONAR ESTE BLOCO COMPLETO */
.hero-cta.secondary {
    background: transparent;
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-cta.secondary:hover {
    background: white;
    color: #667eea;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

/* ADICIONAR ESTE BLOCO COMPLETO */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
		
		
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }
        
        /* Seção de Preços */
        .pricing-section {
            background: white;
            padding: 80px 20px;
            margin-top: -60px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .pricing-header h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .pricing-header p {
            font-size: 18px;
            color: #666;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .pricing-card {
            background: white;
            border: 3px solid #e5e7eb;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .pricing-card.destaque {
            border-color: #10b981;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            position: relative;
        }
        
        .badge-popular {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #10b981;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .pricing-card h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }
        
        .pricing-card .preco {
            font-size: 48px;
            font-weight: 900;
            color: #667eea;
            margin: 20px 0;
        }
        
        .pricing-card .periodo {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .pricing-card li {
            padding: 12px 0;
            color: #555;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .pricing-card li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 14px;
        }
        
        /* Screenshots Section */
        .screenshots-section {
            padding: 80px 5px;
            background: #f9fafb;
        }
        
        .section-title {
            text-align: center;
            font-size: 22px;
            color: #333;
            margin-bottom: 50px;
            font-weight: 900;
        }
        
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .screenshot-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .screenshot-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .screenshot-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .screenshot-caption {
            padding: 20px;
            text-align: center;
            font-weight: 600;
            color: #333;
        }
		.link_insta {
		color: #ffffff;	
		}
        /* Video Section */
        .video-section {
            padding: 80px 20px;
            background: white;
        }
        
        .video-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }
        
        .video-container iframe {
            width: 100%;
            height: 500px;
            border: none;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .testimonial-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #667eea;
            font-size: 24px;
        }
        
        .testimonial-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .testimonial-info p {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .testimonial-link {
            display: inline-block;
            padding: 10px 20px;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .testimonial-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }
        
        /* Form Section */
        .form-section {
            padding: 80px 20px;
            background: white;
        }
        
        .form-card {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .section-subtitle {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #667eea;
        }
        
        .section-subtitle::before {
            content: '';
            width: 8px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 4px;

        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }
        
        .form-group label .required {
            color: #ef4444;
            margin-left: 3px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s;
            background: #f9fafb;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        
        .helper-text {
            font-size: 12px;
            color: #6b7280;
            margin-top: 5px;
        }
        
        .alert {
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 500;
            animation: slideDown 0.3s;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert.erro {
            background: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #dc2626;
        }
        
        .btn-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
        }
        
        .termos {
            margin-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6b7280;
        }
        
        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        
        .footer p {
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 22px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .video-container iframe {
                height: 300px;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }
		
		@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    /* ADICIONAR ESTAS LINHAS */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    /* FIM DA ADIÇÃO */
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

		
		/* How to Promote Section */
.promote-section {
    padding: 80px 5px;
    background: white;
    position: relative;
    overflow: hidden;
}

.promote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    z-index: 0;
}

.promote-content {
    position: relative;
    z-index: 1;
}

.promote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promote-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.promote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.promote-card:hover::before {
    transform: scaleX(1);
}

.promote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.promote-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.promote-card:hover .promote-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.promote-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.promote-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.promote-card .badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

.promote-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 20px;
    border: 2px dashed #10b981;
}

.promote-cta h3 {
    color: #065f46;
    font-size: 24px;
    margin-bottom: 15px;
}

.promote-cta p {
    color: #047857;
    font-size: 16px;
    margin-bottom: 25px;
}

.promote-cta a {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.promote-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

@media (max-width: 768px) {
    .promote-grid {
        grid-template-columns: 1fr;
    }
}

		
.planos-container {
    margin: 20px 0;
}

.plano-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plano-card.selected {
    border-color: #00b894;
    background: #f0fff4;
    box-shadow: 0 10px 25px rgba(0,184,148,0.2);
}

.plano-card.popular {
    border-color: #00b894;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #00b894;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.plano-header {
    text-align: center;
    margin-bottom: 15px;
}

.plano-icone {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.plano-header h3 {
    margin: 0;
    color: #2d3436;
}

.plano-preco {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #00b894;
    margin: 15px 0;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plano-features li {
    padding: 8px 0;
    color: #2d3436;
    font-size: 14px;
}

.plano-instalacao {
    text-align: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #636e72;
    margin-top: 15px;
}

		
		/* Seção FAQ */
.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-header p {
    font-size: 18px;
    color: #636e72;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
    gap: 15px;
}


.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 16px;
    color: #2d3436;
    font-weight: 600;
}

.faq-toggle {
    font-size: 28px;
    color: #00b894;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 68px;
}

.faq-answer p {
    margin: 0;
    color: #636e72;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer strong {
    color: #2d3436;
    display: block;
    margin-top: 8px;
}

.faq-footer {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,184,148,0.2);
}

.faq-footer p {
    margin: 0;
    font-size: 18px;
    color: #2d3436;
}

.faq-footer strong {
    color: #00b894;
}


 /* Estilos base da seção de preços */
    .pricing-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .pricing-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .pricing-section h2 {
        text-align: center;
        color: white;
        font-size: 2.5em;
        margin-bottom: 50px;
    }

    /* Grid dos planos - 3 colunas no desktop */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Card dos planos */
    .pricing-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    /* Card em destaque (plano recomendado) */
    .pricing-card.featured {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        transform: scale(1.05);
        position: relative;
    }

    /* Badge "Mais Popular" */
    .popular-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #FFD700;
        color: #333;
        padding: 8px 25px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.9em;
    }

    /* Títulos dos planos */
    .pricing-card h3 {
        color: #667eea;
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .pricing-card.featured h3 {
        color: white;
        margin-top: 20px;
    }

    /* Subtítulos */
    .pricing-card p {
        color: #888;
        margin-bottom: 20px;
    }

    .pricing-card.featured p {
        color: rgba(255,255,255,0.9);
    }

    /* Preços */
    .price {
        margin: 30px 0;
    }

    .price-value {
        font-size: 3em;
        font-weight: bold;
        color: #333;
        display: block;
    }

    .pricing-card.featured .price-value {
        color: white;
    }

    .price-monthly {
        display: block;
        color: #888;
        margin-top: 10px;
    }

    .pricing-card.featured .price-monthly {
        color: rgba(255,255,255,0.9);
    }

    .price-discount {
        display: block;
        color: #4CAF50;
        margin-top: 5px;
        font-weight: bold;
    }

    .pricing-card.featured .price-discount {
        color: #FFD700;
    }

    /* Lista de recursos */
    .pricing-card ul {
        list-style: none;
        padding: 0;
        margin: 30px 0;
        text-align: left;
    }

    .pricing-card li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .pricing-card.featured li {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        color: white;
    }

    .pricing-card li:last-child {
        border-bottom: none;
    }

    .check-icon {
        color: #4CAF50;
        margin-right: 10px;
    }

    .pricing-card.featured .check-icon {
        color: #FFD700;
    }

    /* Botões */
    .pricing-card button {
        width: 100%;
        padding: 15px;
        background: #667eea;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1em;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 500;
    }

    .pricing-card.featured button {
        background: white;
        color: #667eea;
        font-weight: bold;
    }

    /* Hover effects */
    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .pricing-card button:hover {
        background: #5568d3;
        transform: scale(1.05);
    }

    .pricing-card.featured button:hover {
        background: #f0f0f0;
    }

    /* RESPONSIVO - Mobile */
    @media (max-width: 768px) {
        .pricing-section {
            padding: 40px 15px;
        }

        .pricing-section h2 {
            font-size: 1.8em !important;
            margin-bottom: 30px;
        }

        /* Grid em 1 coluna no mobile */
        .pricing-grid {
            grid-template-columns: 1fr !important;
            gap: 20px !important;
        }

        /* Remove o scale do card em destaque no mobile */
        .pricing-card.featured {
            transform: scale(1) !important;
        }

        .pricing-card.featured:hover {
            transform: scale(1) translateY(-5px) !important;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        /* Ajusta tamanho do preço no mobile */
        .price-value {
            font-size: 2.5em !important;
        }

        /* Badge no mobile */
        .popular-badge {
            font-size: 0.8em;
            padding: 6px 20px;
        }
    }

    /* Tablets */
    @media (max-width: 1024px) and (min-width: 769px) {
        .pricing-grid {
            gap: 20px;
        }

        .pricing-card {
            padding: 30px 20px;
        }
    }

/* Seção de Temas */
.temas-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.temas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.tema-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tema-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.tema-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.35 / 1;
    object-fit: contain; /* Mostra a imagem completa sem cortar */
    display: block;
    background: #f0f0f0; /* Cor de fundo para áreas vazias */
}

.tema-texto {
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    color: #34495e;
    margin: 0;
    background: #f8f9fa;
}

/* Modal */
.modal-tema {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content-img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ff6b6b;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px;
    font-size: 1.3em;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .temas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tema-img {
        aspect-ratio: 1.35 / 1; /* Mantém proporção no mobile também */
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 1em;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}
