/* Estilos aprimorados para o site CrescerEAD */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/*===================================
=            Variáveis CSS           =
===================================*/
:root {
    --gradient-start: #156e59;
    --gradient-middle: #1e8973;
    --gradient-end: #3fedca;
    --accent-color: #ff6b6b;
    --success-color: #20bf6b;
    --warning-color: #f7b731;
    --info-color: #45aaf2;
    --light-bg: #f8f9fa;
    --dark-text: #2d3436;
    --medium-text: #636e72;
    --light-text: #b2bec3;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-round: 50px;
    --box-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/*===================================
=              Reset CSS            =
===================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #fff;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #0056b3;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

ul,
ol {
    list-style: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
    border-radius: 0.5rem;
}

/*===================================
=             Header & Nav          =
===================================*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 110, 89, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-floating {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
}

.header-left .logo {
    height: 120px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(21, 110, 89, 0.2));
}

.header-left .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(21, 110, 89, 0.3));
}

/* Navbar moderna */
.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    position: relative;
}

.navbar ul li>a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.navbar ul li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    transition: all 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.navbar ul li>a:hover::before {
    left: 0;
}

.navbar ul li>a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 110, 89, 0.3);
}

.navbar ul li.dropdown>a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar ul li.dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Dropdown moderno - CORRIGIDO */
.navbar .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 15px 0;
    min-width: 280px;
    max-width: 320px;
    z-index: 1000;
    border: 1px solid rgba(21, 110, 89, 0.1);
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.navbar ul li.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
    pointer-events: auto;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--gradient-middle);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-start);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    gap: 10px;
}

.dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    transition: width 0.3s ease;
}

.dropdown-menu li a:hover::before {
    width: 4px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff !important;
    padding-left: 30px;
}

.dropdown-menu li a i {
    font-size: 12px;
    color: var(--gradient-middle);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover i {
    transform: translateX(3px);
    color: var(--gradient-start);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    padding: 10px;
    color: var(--dark-text);
    transition: color var(--transition-normal);
}

.cart-icon-container:hover {
    color: var(--gradient-middle);
}

.cart-icon-container i {
    font-size: 22px;
}

.cart-item-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-teste-vocacional {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(21, 110, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-teste-vocacional::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
    transition: all 0.3s ease;
}

.btn-teste-vocacional:hover::before {
    left: 0;
}

.btn-teste-vocacional:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 110, 89, 0.4);
}

.btn-teste-vocacional i {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.btn-teste-vocacional span {
    position: relative;
    z-index: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--gradient-middle);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar ul {
        gap: 0;
    }

    .navbar ul li>a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-floating {
        padding: 0 20px;
    }

    .navbar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-left .logo {
        height: 50px;
    }

    .btn-teste-vocacional {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Adicionar espaçamento no body para compensar o header fixo */
body {
    padding-top: 90px;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/*===================================
=              Hero Section         =
===================================*/
.hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.1), rgba(30, 137, 115, 0.05));
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: -1;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    color: #156e59;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-text);
    margin-bottom: 32px;
    line-height: 1.5;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

/* Animação de cursos na primeira dobra */
.animated-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.course-tag {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-round);
    padding: 10px 20px;
    font-size: 1rem;
    opacity: 0.7;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.course-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.course-tag.active {
    color: #fff;
    border-color: transparent;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--box-shadow-md);
}

.course-tag.active::before {
    opacity: 1;
}

.hero-cta {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(30, 137, 115, 0.3);
}

.btn-hero-cta::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform var(--transition-normal);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 137, 115, 0.4);
}

.btn-hero-cta:hover::after {
    transform: translateX(5px);
}

/*===================================
=        Faixa de Métricas          =
===================================*/
.stats-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    flex: 1 1 180px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card:nth-child(1) .stat-icon::before {
    content: "\f02d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.stat-card:nth-child(2) .stat-icon::before {
    content: "\f500";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.stat-card:nth-child(3) .stat-icon::before {
    content: "\f5a2";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.stat-card:nth-child(4) .stat-icon::before {
    content: "\f0ac";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.counter {
    display: inline-block;
    position: relative;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 2ª Dobra - Sobre nós */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 700;
    position: relative;
    opacity: 0;
    /* Default hidden state for animation */
    transform: translateY(20px);
    /* Default starting position for animation */
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    margin: 15px auto 0;
    border-radius: var(--border-radius-round);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--medium-text);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    /* Default hidden state for animation */
    transform: translateY(20px);
    /* Default starting position for animation */
}

/* Animação de entrada genérica para elementos */
.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    transition: height var(--transition-slow);
    z-index: -1;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-lg);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(30, 137, 115, 0.2);
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-img {
    color: #fff;
    font-size: 30px;
}

.feature-card:nth-child(1) .feature-icon-img::before {
    content: "\f0b1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon-img::before {
    content: "\f0f2";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-card:nth-child(3) .feature-icon-img::before {
    content: "\f4c4";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-card:nth-child(4) .feature-icon-img::before {
    content: "\f19d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.4;
    margin: 0 0 10px;
    line-height: 1.4;
    min-height: 45px;
    transition: color var(--transition-normal);
}

.feature-card:hover h3 {
    color: var(--gradient-middle);
}

.about-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(30, 137, 115, 0.3);
}

.btn-about-cta::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform var(--transition-normal);
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 137, 115, 0.4);
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
}

.btn-about-cta:hover::after {
    transform: translateX(5px);
}

/* 3ª Dobra - Teste Vocacional */
.vocational-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vocational-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.vocational-section .section-title,
.vocational-section .section-subtitle {
    color: #fff;
    position: relative;
    z-index: 1;
}

.vocational-section .section-title::after {
    background: #fff;
}

.vocational-description {
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.vocational-cta {
    position: relative;
    z-index: 1;
}

.btn-vocational {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--gradient-start);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-vocational::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform var(--transition-normal);
}

.btn-vocational:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-vocational:hover::after {
    transform: translateX(5px);
}

/* 4ª Dobra - Cursos mais acessados */
.popular-courses-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.popular-courses-section::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.popular-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.course-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    color: var(--light-text);
    font-size: 3rem;
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-middle);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.course-price-badge,
.course-free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.course-price-badge {
    background: var(--accent-color);
}

.course-free-badge {
    background: var(--success-color);
}

.course-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-details .ratings {
    font-size: 0.9rem;
    color: var(--warning-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-details .ratings span {
    color: var(--medium-text);
    font-size: 0.8rem;
}

.course-details .students {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 10px;
    line-height: 1.4;
    min-height: 45px;
    transition: color var(--transition-normal);
}

.course-card:hover .course-details h3 {
    color: var(--gradient-middle);
}

.course-description {
    font-size: 0.9rem;
    color: var(--medium-text);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--medium-text);
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto;
}

.course-category,
.course-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-buttons {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.course-buttons .btn-info,
.course-buttons .btn-add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 10px;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-buttons .btn-info {
    background: #f0f0f0;
    color: var(--dark-text);
    border: 1px solid #ddd;
}

.course-buttons .btn-info:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.course-buttons .btn-add-to-cart {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(30, 137, 115, 0.2);
}

.course-buttons .btn-add-to-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #1e8973, #27a48c);
    box-shadow: 0 6px 15px rgba(30, 137, 115, 0.3);
    transform: translateY(-2px);
}

.course-buttons .btn-add-to-cart:disabled {
    background: #20bf6b;
    cursor: default;
    box-shadow: none;
    transform: none;
    opacity: 0.8;
}

.all-courses-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.btn-all-courses {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(30, 137, 115, 0.3);
}

.btn-all-courses::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform var(--transition-normal);
}

.btn-all-courses:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 137, 115, 0.4);
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
}

.btn-all-courses:hover::after {
    transform: translateX(5px);
}

/* 5ª Dobra - Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.03), rgba(30, 137, 115, 0.01));
    border-radius: 50%;
    z-index: 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 30px;
    position: relative;
    z-index: 1;
}

.testimonials-slider::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 3rem;
    color: rgba(30, 137, 115, 0.1);
    z-index: -1;
}

.testimonials-slider::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 3rem;
    color: rgba(30, 137, 115, 0.1);
    z-index: -1;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow-md);
    margin: 0 auto;
    display: none;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.testimonial-card.active {
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.author-avatar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 137, 115, 0.2), rgba(63, 81, 181, 0.1));
}

.author-info h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: var(--dark-text);
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot:hover {
    background: #ccc;
}

.dot.active {
    background: var(--gradient-middle);
    transform: scale(1.2);
    box-shadow: 0 2px 5px rgba(30, 137, 115, 0.3);
}

/* 6ª Dobra - Indique e Cresça */
.referral-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.referral-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    transition: height var(--transition-slow);
    z-index: -1;
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(30, 137, 115, 0.2);
    transition: transform var(--transition-normal);
    position: relative;
}

.benefit-card:nth-child(1) .benefit-icon::before {
    content: "\f0d6";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
}

.benefit-card:nth-child(2) .benefit-icon::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
}

.benefit-card:nth-child(3) .benefit-icon::before {
    content: "\f0c0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 30px;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.4;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.benefit-card:hover h3 {
    color: var(--gradient-middle);
}

.referral-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-referral-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(30, 137, 115, 0.3);
    border: none;
}

.btn-referral-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 137, 115, 0.4);
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
}

/* 7ª Dobra - Certificado */
.certificate-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.certificate-section::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.certificate-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.certificate-info {
    flex: 1;
    min-width: 300px;
}

.certificate-info .section-title {
    text-align: left;
}

.certificate-info .section-title::after {
    margin-left: 0;
}

.certificate-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.certificate-benefits li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-normal);
}

.certificate-benefits li:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-md);
}

.certificate-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.certificate-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    transition: all var(--transition-normal);
}

.certificate-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.certificate-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
    transition: all var(--transition-normal);
}

.certificate-image:hover::before {
    top: 15px;
    left: 15px;
}

/* FAQ - Perguntas frequentes */
.faq-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 20px;
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--box-shadow-lg);
}

.faq-question {
    padding: 20px 25px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-left: 5px solid transparent;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-item.active .faq-question {
    background: #f9f9f9;
    border-left: 5px solid var(--gradient-middle);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.faq-item.active .faq-question h3 {
    color: var(--gradient-middle);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background: #fff;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.7;
    color: var(--medium-text);
}

/* 8ª Dobra - Encerramento */
.closing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.closing-section .section-title,
.closing-section .section-subtitle {
    color: #fff;
    position: relative;
    z-index: 1;
}

.closing-section .section-title::after {
    background: #fff;
}

.closing-section .section-subtitle {
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.closing-cta {
    position: relative;
    z-index: 1;
}

.btn-closing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--gradient-start);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-closing::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform var(--transition-normal);
}

.btn-closing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-closing:hover::after {
    transform: translateX(5px);
}

/*===================================
=               Modal               =
===================================*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    display: flex;
}

/*===================================
=      Shopping Cart Sidebar        =
===================================*/
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* Start off-screen */
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-text);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-cart-btn:hover {
    color: var(--dark-text);
    transform: rotate(90deg);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding-top: 50px;
    color: var(--medium-text);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--light-text);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
    overflow: hidden;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--gradient-start);
    font-weight: 700;
}

.cart-item-remove {
    background: #f1f1f1;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--medium-text);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #e74c3c;
    color: white;
}

.cart-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-checkout:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.btn-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*===================================
=        Banner Promocional         =
===================================*/
/* Adicionando estilos para a seção do banner promocional */
.banner-promocional-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.banner-promocional-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.05), rgba(30, 137, 115, 0.02));
    border-radius: 50%;
    z-index: 0;
}

.banner-promocional-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.03), rgba(30, 137, 115, 0.01));
    border-radius: 50%;
    z-index: 0;
}

.banner-wrapper {
    position: relative;
    z-index: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.feature-item i {
    color: var(--gradient-middle);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.banner-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.banner-image-container:hover {
    transform: translateY(-5px);
}

.banner-image-placeholder {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    transition: all var(--transition-normal);
}

.banner-image-placeholder:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 110, 89, 0.8), rgba(30, 137, 115, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--border-radius-lg);
}

.banner-image-container:hover .banner-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.play-button i {
    color: var(--gradient-start);
    font-size: 2rem;
    margin-left: 5px;
}

.banner-image-container:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.click-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.banner-cta {
    text-align: center;
}

.btn-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: var(--border-radius-round);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 6px 20px rgba(21, 110, 89, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-banner-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
    transition: left var(--transition-normal);
    z-index: -1;
}

.btn-banner-cta:hover::before {
    left: 0;
}

.btn-banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 110, 89, 0.4);
}

.btn-banner-cta i {
    transition: transform var(--transition-normal);
}

.btn-banner-cta:hover i {
    transform: translateX(5px);
}

/* Responsividade para o banner */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-features {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .btn-banner-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}