/*
Theme Name: Filosofia de Vida
Description: Tema personalizado para curso de filosofia baseado na landing page "Filosofia de Vida: Existe?"
Author: Desenvolvedor WordPress
Version: 1.0
License: GPL v2 or later
Text Domain: filosofia-vida
*/

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Variáveis CSS para cores */
:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c8aa6;
    --accent-color: #4CAF50;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #fff;
    --bg-dark: #1a5f7a;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ajuste para header fixo */
body {
    padding-top: 80px; /* Altura do header + padding */
}

/* Header */
.site-header {
    background: var(--bg-light);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-section {
    height: 100%;
    margin-bottom: 0;
}

.hero-carousel .carousel-slide {
    position: relative;
}

.hero-carousel .carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-carousel .carousel-caption {
    display: none; /* Esconder caption do carrossel no hero */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: var(--secondary-color);
}

.pricing-cta {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 18px 30px;
}

.security-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.security-icon {
    color: var(--accent-color);
    font-weight: bold;
}

/* Carrossel Section */
.carousel-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 80px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 122, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 95, 122, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s ease;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(26, 95, 122, 1);
}

/* Seções alternadas */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* Lista de benefícios */
.benefits-list {
    list-style: none;
    margin-bottom: 50px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Módulos do curso */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.module-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.module-number {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.module-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.module-description {
    color: #666;
    line-height: 1.6;
}

/* Bônus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-description {
    color: #666;
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.pricing-info {
    text-align: center;
    max-width: 600px;
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 3px solid #FFD700;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-original {
    color: #666;
    text-decoration: line-through;
    margin-bottom: 30px;
}

.guarantee-badge {
    position: absolute;
    right: -10px;
    top: -20px;
    background: #FF6B35;
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    z-index: 10;
    min-width: 80px;
}

.guarantee-badge .days {
    font-size: 2rem;
    display: block;
}

.guarantee-badge .stars {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Header Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    flex: 1;
}

.site-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--secondary-color);
}

.site-description {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Navigation */
.main-navigation {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1000;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-toggle-icon {
    background: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Header Scrolled */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    transform: translateY(0);
}

/* Transição suave para o header */
.site-header {
    transition: all 0.3s ease;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-company {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    margin-top: 30px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 20px;
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltips */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1000;
    pointer-events: none;
    display: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Animations */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Ajuste para mobile */
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 120px; /* Altura do header + padding */
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .guarantee-badge {
        right: 10px;
        top: -10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Page Styles */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-image {
    margin: 30px 0;
    text-align: center;
}

.page-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.entry-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 25px 0 10px 0;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: var(--primary-color);
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.edit-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.edit-link a:hover {
    text-decoration: underline;
}

.page-links {
    margin: 30px 0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.page-links a:hover {
    background: var(--secondary-color);
}

.page-links .current {
    background: var(--secondary-color);
    font-weight: bold;
}

/* Single Post Styles */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.single-post .entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-meta {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.entry-meta span {
    margin-right: 20px;
}

.entry-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-meta a:hover {
    text-decoration: underline;
}

.post-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.single-post .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-post .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links .nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

/* Comments */
.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.comment-content {
    margin-top: 10px;
    line-height: 1.6;
}

.reply {
    margin-top: 10px;
}

.reply a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.reply a:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.comment-reply-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-submit {
    text-align: right;
}

.submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit:hover {
    background: var(--secondary-color);
}

/* Archive Styles */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: var(--bg-light);
    border-radius: 10px;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-card .entry-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-card .entry-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card .entry-title a:hover {
    color: var(--primary-color);
}

.post-card .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-card .entry-meta span {
    margin-right: 15px;
}

.post-card .entry-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-card .entry-meta a:hover {
    text-decoration: underline;
}

.post-card .entry-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-card .entry-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Pagination */
.navigation.pagination {
    margin: 50px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev,
.next {
    font-weight: bold;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-posts p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.search-suggestions {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.search-suggestions h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.search-suggestions li:last-child {
    border-bottom: none;
}

/* Mobile Styles for Archive */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .post-card .entry-title {
        font-size: 1.2rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
}

/* Search Styles */
.search-form-container {
    margin-top: 20px;
}

.search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    outline: none;
}

.search-form input[type="search"]:focus {
    border-color: var(--primary-color);
}

.search-form button[type="submit"] {
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.search-form button[type="submit"]:hover {
    background: var(--secondary-color);
}

.search-results-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.search-results-info p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.search-result {
    border-left: 4px solid var(--accent-color);
}

.search-highlight {
    margin-top: 15px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.search-highlight mark {
    background: #ffeb3b;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}

.post-type {
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.search-again {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.search-again h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.search-again .search-form {
    margin: 0 auto;
}

/* 404 Error Page */
.error-404 {
    text-align: center;
    padding: 60px 0;
}

.error-404 .page-header {
    margin-bottom: 40px;
}

.error-404 .page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .page-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.error-suggestions {
    margin: 40px 0;
    text-align: left;
}

.error-suggestions h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.error-suggestions li:last-child {
    border-bottom: none;
}

.error-suggestions li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.error-actions {
    margin: 40px 0;
}

.error-actions .cta-button {
    margin-bottom: 30px;
}

.search-section {
    margin-top: 30px;
}

.search-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.recent-posts,
.popular-categories {
    margin: 40px 0;
    text-align: left;
}

.recent-posts h3,
.popular-categories h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.recent-posts ul,
.popular-categories ul {
    list-style: none;
    padding: 0;
}

.recent-posts li,
.popular-categories li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.recent-posts li:last-child,
.popular-categories li:last-child {
    border-bottom: none;
}

.recent-posts a,
.popular-categories a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts a:hover,
.popular-categories a:hover {
    color: var(--primary-color);
}

.post-count {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Styles for 404 */
@media (max-width: 768px) {
    .error-404 .page-title {
        font-size: 2rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-404 .page-content > p {
        font-size: 1.1rem;
    }
}

/* Custom Post Type Styles */
.single-modulo,
.single-bonus {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.modulo-badge,
.bonus-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modulo-number {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.modulo-duration {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.bonus-type {
    background: #FF6B35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.bonus-icon {
    font-size: 1.5rem;
}

.modulo-featured-image,
.bonus-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.modulo-navigation {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.modulo-progress {
    margin-top: 30px;
    text-align: center;
}

.modulo-progress h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.modulo-progress p {
    color: #666;
    font-size: 0.9rem;
}

.video-section {
    margin: 40px 0;
}

.video-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bonus-actions {
    margin: 30px 0;
    text-align: center;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.bonus-info {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.bonus-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-info ul {
    list-style: none;
    padding: 0;
}

.bonus-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.bonus-info li:last-child {
    border-bottom: none;
}

.bonus-info strong {
    color: var(--primary-color);
}

/* Archive Custom Post Types */
.modules-archive-grid,
.bonus-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.modulo-card,
.bonus-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

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

.modulo-header,
.bonus-header {
    padding: 20px 20px 0 20px;
}

.modulo-thumbnail,
.bonus-thumbnail {
    position: relative;
    overflow: hidden;
}

.modulo-image,
.bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modulo-card:hover .modulo-image,
.bonus-card:hover .bonus-image {
    transform: scale(1.05);
}

.modulo-content,
.bonus-content {
    padding: 25px;
}

.modulo-title,
.bonus-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.modulo-title a,
.bonus-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modulo-title a:hover,
.bonus-title a:hover {
    color: var(--primary-color);
}

.modulo-excerpt,
.bonus-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.bonus-category {
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-has-video {
    color: var(--primary-color);
    font-weight: 500;
}

.modulo-footer,
.bonus-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.modulo-footer .read-more,
.bonus-footer .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modulo-footer .read-more:hover,
.bonus-footer .read-more:hover {
    color: var(--secondary-color);
}

/* Mobile Styles for CPT Archives */
@media (max-width: 768px) {
    .modules-archive-grid,
    .bonus-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modulo-title,
    .bonus-title {
        font-size: 1.2rem;
    }
    
    .bonus-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* 500 Error Page */
.error-500 {
    text-align: center;
    padding: 60px 0;
}

.error-500 .page-header {
    margin-bottom: 40px;
}

.error-500 .page-title {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-500 .error-code {
    font-size: 8rem;
    font-weight: bold;
    color: #e74c3c;
    opacity: 0.3;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-500 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-500 .page-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.error-500 .error-suggestions {
    margin: 40px 0;
    text-align: left;
}

.error-500 .error-suggestions h2 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.error-500 .error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-500 .error-suggestions li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.error-500 .error-suggestions li:last-child {
    border-bottom: none;
}

.error-500 .error-suggestions li::before {
    content: "⚠️";
    margin-right: 10px;
}

.error-500 .error-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-500 .error-actions .cta-button {
    margin: 0;
}

.error-500 .error-actions .secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.error-500 .error-actions .secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: left;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Mobile Styles for 500 */
@media (max-width: 768px) {
    .error-500 .page-title {
        font-size: 2rem;
    }
    
    .error-500 .error-code {
        font-size: 5rem;
    }
    
    .error-500 .page-content > p {
        font-size: 1.1rem;
    }
    
    .error-500 .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.privacy-policy .entry-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.privacy-policy .entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-details {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details strong {
    color: var(--primary-color);
}

.policy-actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-actions .secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.policy-actions .secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Styles for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy .entry-title {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Terms of Use Page */
.terms-of-use {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.terms-of-use .entry-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.terms-of-use .entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.terms-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.terms-actions {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.terms-actions .secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.terms-actions .secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Styles for Terms of Use */
@media (max-width: 768px) {
    .terms-of-use .entry-title {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-page .entry-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page .entry-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.response-time {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: grid;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Styles for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page .entry-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .loading-overlay {
        display: none !important;
    }
    
    .hero-carousel {
        display: none !important;
    }
    
    .cta-button {
        display: none !important;
    }
    
    .page-content {
        padding: 20px 0;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 500px;
        padding: 0;
    }
    
    .hero-carousel .carousel-section {
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .pricing-container {
        gap: 30px;
    }
    
    .pricing-info h2 {
        font-size: 2rem;
    }
    
    .pricing-box {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .guarantee-badge {
        right: 10px;
        top: -15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .guarantee-badge .days {
        font-size: 1.5rem;
    }
    
    .pricing-cta {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .security-text {
        font-size: 0.8rem;
    }
    
    .cards-grid,
    .modules-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .faq-item h4 {
        font-size: 1rem;
    }
}

/* Seção de Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.star {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.star-filled {
    color: #FFD700;
}

.star-empty {
    color: #ddd;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.author-role {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Seção de FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: var(--text-dark);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
} 