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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #1e293b;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4f46e5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.4) 50%, rgba(51, 65, 85, 0.4) 100%), url('https://457caba9bce08b52709e29af1aa64f58.cdn.bubble.io/f1758041702962x648717170559822700/Green2024%40%40.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
    white-space: pre-line;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.offer-badge {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin: 0 auto 1rem auto;
    width: fit-content;
    animation: pulse 2s infinite;
}

.offer-badge i {
    margin-right: 0.5rem;
}

.price-section {
    margin: 1.5rem 0;
}

.price-label {
    display: block;
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-main {
    display: block;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-alt {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.professional-image {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 3/2;
    min-height: 300px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.icon-item:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.icon-item:nth-child(2) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.icon-item:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.services .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Courses Section - já está escura, mantendo */
.courses {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
}

.courses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.courses .section-title {
    color: #fff;
}

.courses-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.feature-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.courses-image {
    position: relative;
}

.courses-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
}

.cta-button-large {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.4);
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.comparison .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #f1f5f9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.negative {
    background: rgba(55, 65, 81, 0.8);
    color: #e5e7eb;
    backdrop-filter: blur(10px);
}

.comparison-card.positive {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comparison-list i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1e40af;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    width: 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

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

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

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

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

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .hero-content {
        gap: 3rem;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .about-content,
    .courses-content {
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Ajustes de espaçamento para tablet */
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 2.5rem;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        background: url('https://457caba9bce08b52709e29af1aa64f58.cdn.bubble.io/f1758043629921x308269214017194100/Green2024%40%40%20%28Imagem%20de%20fundo%20de%20tela%20para%20celular%29.png') no-repeat center center;
        background-size: cover;
        position: relative;
        min-height: 100vh;
        padding: 80px 0 40px 0;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.75);
        z-index: 1;
    }
    
    .hero .container {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .offer-card {
        backdrop-filter: blur(8px);
        max-width: 320px;
        padding: 1.5rem;
        margin: 2rem auto 0 auto;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 120px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        white-space: pre-line;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        font-weight: 400;
    }
    
    .price-main {
        font-size: 2.5rem !important;
        font-weight: 800;
        line-height: 1;
    }
    
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-alt {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .about-content,
    .courses-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .about-text {
        width: 100%;
    }
    
    .image-container {
        max-width: 100%;
        min-height: 250px;
        aspect-ratio: 16/10;
        margin: 0 auto;
    }
    
    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .floating-icons,
    .about-container .floating-icons,
    .floating-icons .icon-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Ajustes de seções específicas para mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.02em;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        font-weight: 400;
        text-align: center;
    }
    
    /* Otimizações de tipografia para mobile */
    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: justify;
    }
    
    .about-description p {
        text-align: justify;
    }
    
    .btn {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        padding: 14px 28px;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }
    
    .service-card p,
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 0 30px 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        min-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
    }
    
    .offer-card {
        max-width: 280px;
        padding: 1.2rem;
        margin: 1.5rem auto 0 auto;
    }
    
    .price-main {
        font-size: 2.2rem !important;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .image-container {
        min-height: 200px;
        aspect-ratio: 4/3;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .offer-content {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .offer-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .offer-text p {
        font-size: 1rem;
        text-align: justify;
    }
    
    .offer-benefits {
        max-width: 300px;
    }
    
    .offer-card {
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        white-space: pre-line;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .service-card p,
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        text-align: justify;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .contact-item {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    /* Ajustes específicos para elementos pequenos */
    .stats-item,
    .comparison-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .offer-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .bonus-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.testimonials .subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: white;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0.25rem 0 0 0;
    opacity: 0.8;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Seção de Oferta Final */
.final-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.offer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.offer-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.offer-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    background: #2563eb;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.price-section {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button-large {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

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

/* Seção de Bônus Exclusivo */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
    text-align: center;
}

.bonus-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.bonus-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
}

.bonus-icon {
    background: #2563eb;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bonus-book {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-icon {
    font-size: 8rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

/* Footer atualizado */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .offer-text {
        text-align: center;
    }
    
    .offer-text h2 {
        font-size: 2rem;
    }
    
    .offer-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .offer-card {
        margin: 2rem auto 0 auto;
        max-width: 320px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bonus-item {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .testimonials h2,
    .offer-text h2,
    .bonus-section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .book-icon {
        font-size: 6rem;
    }
}