/* Variáveis de cores e efeitos */
:root {
    --primary-color: #245ba9;
    --secondary-color: #1a4580;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-bg: #f5f7fa;
    --gradient-primary: linear-gradient(135deg, #245ba9 0%, #1a4580 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--light-bg);
}

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

/* Seções gerais */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

h1, h2, h3, h4 {
    color: #245ba9;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section Modernizada */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #245ba9 0%, #1a4580 50%, #000000 100%);
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Price Box */
.price-box {
    background: linear-gradient(45deg, #245ba9, #000000);
    padding: 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.price-box h2, .price-box h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.guarantee i {
    color: #245ba9;
}

/* Botões Modernizados */
.cta-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.price-info {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.price-info p {
    font-size: 1.6rem;
    color: #333;
    margin: 10px 0;
    font-weight: 600;
}

.price-info p:first-child {
    color: #245ba9;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 20px 40px;
        font-size: 1.5rem;
        width: 90%;
        max-width: 400px;
    }

    .price-info {
        width: 90%;
        max-width: 400px;
    }

    .price-info p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 18px 35px;
        font-size: 1.3rem;
        width: 95%;
        max-width: 350px;
    }

    .price-info {
        width: 95%;
        max-width: 350px;
    }

    .price-info p {
        font-size: 1.2rem;
    }
}

/* Learn Section */
.learn {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23245ba9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.learn h2 {
    text-align: center;
    color: #245ba9;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.learn h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #245ba9, #2ecc71);
    border-radius: 2px;
}

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

.learn-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.module {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(36, 91, 169, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #245ba9;
}

.module h3 {
    color: #245ba9;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.module p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.centered-text {
    text-align: center !important;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin: 30px 0 !important;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(36, 91, 169, 0.1);
}

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

    .module {
        padding: 25px;
        margin-bottom: 0;
        min-height: 180px;
    }

    .module h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .module p {
        font-size: 1rem;
    }

    .centered-text {
        font-size: 1.1rem !important;
        margin: 20px 0 !important;
        padding: 15px;
    }
}

/* For Who Section */
.for-who {
    position: relative;
    padding-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.for-who h2 {
    margin-top: 100px;
    color: #245ba9;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(36, 91, 169, 0.1);
}

.check-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #245ba9;
}

.check-item i {
    color: #2ecc71;
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.check-item p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Bônus Section */
.bonuses {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    margin: 10px 5px;
    border-radius: 15px;
    border-left: 4px solid #245ba9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.bonus-card:nth-child(2n) {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
    border-left: 4px solid #2ecc71;
}

.bonus-card:nth-child(3n) {
    background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fd 100%);
    border-left: 4px solid #ff6b6b;
}

.bonus-card h3 {
    font-size: 1.4rem;
    color: #245ba9;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36, 91, 169, 0.1);
    margin-bottom: 15px;
}

.bonus-card:nth-child(2n) h3 {
    color: #2ecc71;
}

.bonus-card:nth-child(3n) h3 {
    color: #ff6b6b;
}

.bonus-value {
    font-size: 1.2rem;
    padding: 8px 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.bonus-card:nth-child(2n) .bonus-value {
    background: rgba(36, 91, 169, 0.1);
    color: #245ba9;
}

.bonus-card:nth-child(3n) .bonus-value {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.bonus-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 10px 0;
    flex-grow: 1;
}

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

.total-bonus {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(36, 91, 169, 0.1);
}

.total-bonus h3 {
    color: #000;
    font-size: 2rem;
    margin: 0 0 30px 0;
    font-weight: 700;
}

.total-bonus .special-price {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .total-bonus .special-price {
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        padding: 0 15px;
        margin: 15px 0 25px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .cta-button {
        margin-top: 10px;
        padding: 20px 40px !important;
        font-size: 1.5rem !important;
        width: 90%;
        max-width: 400px;
    }

    .total-bonus {
        padding: 25px 15px;
    }

    .bonus-card {
        background: rgba(255, 255, 255, 0.95);
        padding: 25px 20px;
        margin: 10px 5px;
        border-radius: 15px;
        border-left: 4px solid #245ba9;
    }

    .bonus-card:nth-child(2n) {
        background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
        border-left: 4px solid #2ecc71;
    }

    .bonus-card:nth-child(3n) {
        background: linear-gradient(135deg, #e8f0fe 0%, #d4e4fd 100%);
        border-left: 4px solid #ff6b6b;
    }

    .bonus-card h3 {
        font-size: 1.4rem !important;
        color: #245ba9;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(36, 91, 169, 0.1);
        margin-bottom: 15px;
    }

    .bonus-card:nth-child(2n) h3 {
        color: #2ecc71;
    }

    .bonus-card:nth-child(3n) h3 {
        color: #ff6b6b;
    }

    .bonus-value {
        font-size: 1.2rem;
        padding: 8px 15px;
        border-radius: 8px;
        margin-top: 15px;
        display: inline-block;
        background: rgba(46, 204, 113, 0.1);
    }

    .bonus-card:nth-child(2n) .bonus-value {
        background: rgba(36, 91, 169, 0.1);
        color: #245ba9;
    }

    .bonus-card:nth-child(3n) .bonus-value {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

    .bonus-description {
        font-size: 1rem;
        line-height: 1.5;
        color: #666;
    }
}

/* Author Section */
.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.author-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.02);
}

.author-info h3 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.author-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .author-info p {
        font-size: 1.2rem;
        line-height: 1.7;
        text-align: center;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .author-info p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Special Offer Section */
.special-offer-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.special-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(36, 91, 169, 0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.5;
}

.special-offer-section .special-offer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(36, 91, 169, 0.1);
    backdrop-filter: blur(10px);
}

.special-offer-section .urgency-message {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-radius: 15px;
    display: inline-block;
    border: 2px solid #ffcdd2;
    transform: translateY(-10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    from { transform: translateY(-10px); }
    to { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.special-offer-section .urgency-message p {
    margin: 5px 0;
    font-size: 1.3rem;
    color: #d32f2f;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.special-offer-section h2 {
    color: #245ba9;
    margin-bottom: 40px;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.special-offer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #245ba9, #000000);
    border-radius: 2px;
}

.special-offer-section .price-box {
    margin: 40px auto;
    max-width: 500px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #245ba9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.special-offer-section .price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #245ba9, #000000);
}

.special-offer-section .price-box h3 {
    color: #245ba9;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.special-offer-section .price-subtitle {
    color: #666;
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: 500;
}

.special-offer-section .guarantee {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #245ba9;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid #245ba9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.special-offer-section .guarantee i {
    color: #245ba9;
    font-size: 1.5rem;
}

.special-offer-section .cta-button {
    margin-top: 40px;
    padding: 25px 50px;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-offer-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.special-offer-section .cta-button:hover::before {
    left: 100%;
}

.special-offer-section .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
}

@media (max-width: 768px) {
    .special-offer-section {
        padding: 40px 0;
    }
    
    .special-offer-section .special-offer {
        padding: 30px 20px;
    }

    .special-offer-section h2 {
        font-size: 2rem;
    }

    .special-offer-section .price-box h3 {
        font-size: 2.5rem;
    }

    .special-offer-section .urgency-message p {
        font-size: 1.1rem;
    }
}

/* FAQ Section - Melhorias */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(36, 91, 169, 0.1);
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, rgba(36, 91, 169, 0.05), rgba(0, 0, 0, 0.02));
    color: #245ba9;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    color: #245ba9;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-right: 30px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #245ba9;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.animate-text {
    animation: fadeIn 1s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .hero .subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .hero .cta-button {
        padding: 20px 40px !important;
        font-size: 1.5rem !important;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero .price-info {
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
    }

    .hero .price-info p {
        font-size: 1.3rem !important;
        margin: 8px 0;
        font-weight: 600;
    }

    .hero .price-info p:first-child {
        font-size: 1.4rem !important;
        font-weight: 700;
    }

    .total-bonus .special-price {
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        padding: 0 15px;
        margin: 15px 0 25px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .module {
        padding: 25px;
        margin-bottom: 20px;
    }

    .module h3 {
        font-size: 1.3rem !important;
        padding-bottom: 10px;
    }

    .check-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .check-item {
        padding: 15px;
    }

    .check-item span {
        font-size: 1rem !important;
    }

    .check-item i {
        font-size: 1.5rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .bonus-card {
        padding: 20px;
    }

    .bonus-header h3 {
        font-size: 1.2rem !important;
    }

    .bonus-header h4 {
        font-size: 1.1rem !important;
    }

    .bonus-price {
        font-size: 1rem !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 0.95rem !important;
    }

    .author-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 10px;
    }

    .author-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .author-info p {
        text-align: left;
        font-size: 0.95rem !important;
    }

    .special-offer-section .special-offer {
        padding: 20px 15px;
    }

    .special-offer-section .price-box {
        padding: 20px;
    }

    .special-offer-section .price-box h3 {
        font-size: 2rem !important;
    }

    .special-offer-section .price-subtitle {
        font-size: 1.1rem !important;
    }

    .special-offer-section .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem !important;
        width: 90%;
        max-width: 300px;
    }

    .special-offer-section .urgency-message p {
        font-size: 1rem !important;
    }

    .faq-grid {
        padding: 0 15px;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 12px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem !important;
        padding-right: 25px;
    }

    .faq-answer {
        padding: 0;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 0.95rem !important;
    }

    .price-info {
        margin-top: 10px;
    }

    .price-info p {
        font-size: 1.3rem !important;
        margin: 8px 0;
        font-weight: 600;
    }

    .price-info p:first-child {
        font-size: 1.4rem !important;
        font-weight: 700;
    }

    .cta-button {
        width: 90%;
        max-width: 300px;
        padding: 20px 40px !important;
        font-size: 1.5rem !important;
    }

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

    .learn-content p.centered-text,
    .author-info p {
        text-align: center !important;
        padding: 0 15px;
        font-size: 1rem !important;
        width: 100%;
        max-width: 100%;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #245ba9, #000000);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #000000, #245ba9);
}

/* Menu Toggle */
.menu-toggle {
    display: none !important;
}

body.menu-open .container {
    transform: none !important;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #245ba9, #000000);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
    padding: 80px 0;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    margin-bottom: 30px;
    color: #245ba9;
}

.cta .price-box {
    margin: 30px auto;
    max-width: 400px;
    background: white;
    border: 2px solid #245ba9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta .price-box h3 {
    color: #245ba9;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta .guarantee {
    background: #f8f9fa;
    color: #245ba9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #245ba9;
}

.cta .guarantee i {
    color: #245ba9;
}

.urgency-message {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff3f3;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid #ffcdd2;
}

.urgency-message p {
    margin: 5px 0;
    font-size: 1.2rem;
    color: #d32f2f;
    font-weight: 600;
}

.price-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Removendo estilos do countdown que não serão mais usados */
.countdown, .countdown-item, .countdown-number, .countdown-label {
    display: none;
}

/* Special Offer in Learn Section */
.special-offer {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.special-offer .urgency-message {
    margin-bottom: 20px;
}

.special-offer .price-box {
    margin: 20px auto;
    max-width: 400px;
    background: white;
    border: 2px solid #245ba9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.special-offer .price-box h3 {
    color: #245ba9;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.special-offer .guarantee {
    background: #f8f9fa;
    color: #245ba9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #245ba9;
}

.special-offer .guarantee i {
    color: #245ba9;
}

.special-offer .cta-button {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .special-offer {
        padding: 20px;
        margin-bottom: 40px;
    }
}

/* Special Offer in For Who Section */
.for-who .special-offer {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.for-who .special-offer .urgency-message {
    margin-bottom: 20px;
}

.for-who .special-offer .price-box {
    margin: 20px auto;
    max-width: 400px;
    background: white;
    border: 2px solid #245ba9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.for-who .special-offer .price-box h3 {
    color: #245ba9;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.for-who .special-offer .guarantee {
    background: #f8f9fa;
    color: #245ba9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #245ba9;
}

.for-who .special-offer .guarantee i {
    color: #245ba9;
}

.for-who .special-offer .cta-button {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .for-who .special-offer {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
    padding: 100px 0;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.testimonial-author {
    border-top: 2px solid rgba(36, 91, 169, 0.1);
    padding-top: 20px;
}

.testimonial-author h3 {
    color: #245ba9;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #245ba9 0%, #000000 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}

.hero .price-info {
    color: white;
    margin-top: 20px;
}

.hero .price-info p {
    color: rgba(255, 255, 255, 0.9);
}

.hero .price-info p:first-child {
    color: white;
}

@media (max-width: 768px) {
    .price-info {
        font-size: 1rem;
    }

    .price-info p:first-child {
        font-size: 1.1rem;
    }
}

/* Melhorias de Performance */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Melhorias de Usabilidade */
input, 
button, 
.cta-button {
    touch-action: manipulation;
}

/* Fix para iOS */
body {
    -webkit-text-size-adjust: 100%;
}

/* Melhorias de Performance Mobile */
@media (max-width: 768px) {
    /* Otimização de Animações */
    .bonus-card:hover,
    .check-item:hover,
    .testimonial-card:hover {
        transform: none;
    }

    /* Melhorias de Navegação */
    .cta-button,
    .faq-question {
        cursor: pointer;
        min-height: 44px; /* Tamanho mínimo para área de toque */
    }

    /* Ajustes de Layout */
    .hero::before {
        opacity: 0.05;
    }

    .special-offer-section::before {
        opacity: 0.3;
    }

    /* Melhorias de Legibilidade */
    .testimonial-content {
        padding: 10px 5px;
    }

    .bonus-card {
        margin: 0 5px;
    }

    /* Ajustes de Espaçamento */
    .module {
        margin: 10px 5px;
    }

    .check-item {
        margin: 5px;
    }

    /* Otimização de Imagens */
    .author-image img {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    /* Melhorias de Interação */
    .faq-item.active .faq-answer {
        padding: 15px;
        max-height: none;
    }

    /* Ajustes de Grid */
    .testimonials-grid,
    .bonus-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    /* Melhorias de Botões */
    .cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
        line-height: 1.2;
        height: auto;
        min-height: 50px;
    }

    /* Ajustes de Preços */
    .price-box {
        margin: 20px 10px;
        padding: 20px 15px;
    }

    /* Melhorias de Scroll */
    .scroll-progress {
        height: 4px;
    }
}

/* Melhorias Gerais de Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Otimizações Finais Mobile */
@media (max-width: 768px) {
    /* Melhorias de Carregamento */
    .hero, 
    .special-offer-section,
    .testimonials,
    .author,
    .bonus {
        background-attachment: scroll;
    }

    /* Ajustes de Fonte */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Melhorias de Espaçamento */
    .container {
        padding: 0 12px;
    }

    section {
        margin-bottom: 40px;
    }

    /* Otimização de Cards */
    .bonus-card,
    .testimonial-card,
    .check-item {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 12px;
    }

    /* Melhorias de Botões */
    .cta-button {
        padding: 12px 24px !important;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
    }

    /* Ajustes de FAQ */
    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question h3 {
        padding-right: 30px;
    }

    /* Melhorias de Preço */
    .price-info {
        padding: 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        margin: 15px auto;
        max-width: 300px;
    }

    /* Otimização de Imagens */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Melhorias de Navegação */
    .scroll-to-top {
        display: none !important;
    }

    /* Ajustes de Margem */
    .hero-content,
    .learn-content,
    .author-content,
    .testimonials-grid,
    .bonus-grid,
    .faq-grid {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }
}

/* Melhorias de Acessibilidade */
@media (prefers-contrast: high) {
    :root {
        --text-color: #000000;
        --background-color: #ffffff;
    }

    body {
        color: var(--text-color);
        background: var(--background-color);
    }

    .cta-button,
    .price-box,
    .bonus-card,
    .testimonial-card {
        border: 2px solid currentColor;
    }
}

/* Testimonials Carousel */
.testimonials-carousel-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials-carousel-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #245ba9;
    font-size: 2.5rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 15px auto 30px;
    overflow: visible;
    padding: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

.testimonial-image {
    max-width: 154px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #245ba9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: #1a4580;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    display: block;
}

.carousel-button.prev {
    left: -50px;
}

.carousel-button.next {
    right: -50px;
}

.carousel-button.prev::before {
    transform: rotate(-135deg);
}

.carousel-button.next::before {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 280px;
        padding: 0;
        margin: 10px auto 30px;
        overflow: visible;
    }

    .testimonial-image {
        max-width: 180px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .carousel-button.prev {
        left: -45px;
    }

    .carousel-button.next {
        right: -45px;
    }
}

.testimonials-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.testimonial-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #007bff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    display: block;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-button.prev::before {
    transform: rotate(-135deg);
}

.carousel-button.next::before {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .testimonial-image {
        max-width: 300px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
}

.more-testimonials-title {
    color: #245ba9;
    font-size: 2rem;
    text-align: center;
    margin: 60px 0 30px;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 20px auto 40px;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.testimonial-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .more-testimonials-title {
        font-size: 1.5rem;
        margin: 40px 0 20px;
        padding: 0 15px;
    }

    .carousel-container {
        max-width: 100%;
        padding: 0 40px;
        margin: 10px auto 30px;
    }

    .testimonial-image {
        max-width: 250px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .carousel-button::before {
        width: 10px;
        height: 10px;
    }
}

/* Remover todos os estilos do carrossel */
.testimonials-carousel,
.carousel-container,
.carousel-track,
.carousel-slide,
.testimonial-image,
.carousel-button {
    display: none;
}

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

@keyframes float {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Efeitos de Scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Moderno */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Seção O que você vai aprender */
.learning-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.learning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23245ba9" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.learning-section h2 {
    text-align: center;
    color: #245ba9;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.learning-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #245ba9, #2ecc71);
    border-radius: 2px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.learning-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(36, 91, 169, 0.1);
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #245ba9, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #245ba9;
}

.learning-card:hover::before {
    opacity: 1;
}

.learning-card h3 {
    color: #245ba9;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.learning-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #245ba9, #2ecc71);
    border-radius: 2px;
}

.learning-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.learning-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
}

.learning-card ul li::before {
    content: '✓';
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .learning-section {
        padding: 60px 0;
    }

    .learning-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .learning-card {
        padding: 25px;
    }

    .learning-card h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .learning-card p {
        font-size: 1rem;
    }

    .learning-card ul li {
        font-size: 1rem;
    }
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 40px;
    margin-bottom: 80px;
}

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

.video-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(36, 91, 169, 0.1);
    position: relative;
    padding-top: 56.25%; /* Proporção 16:9 */
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #245ba9;
}

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

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .video-testimonials {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .video-card {
        border-radius: 15px;
    }
}

.testimonial-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
}

.testimonial-image-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(36, 91, 169, 0.08);
    padding: 8px;
}

.testimonial-image-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-color: rgba(36, 91, 169, 0.2);
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .testimonial-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .testimonial-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        margin: 30px 15px;
    }

    .testimonial-image-card {
        padding: 6px;
        border-radius: 8px;
    }

    .testimonial-image-card img {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .testimonial-images-grid {
        margin: 20px 10px;
        gap: 8px;
        padding: 8px;
    }

    .testimonial-image-card {
        padding: 4px;
    }
} 