/* 
==============================================
    Educa Rápido - Estilo Moderno
    Autor: Cascade
    Data: 2025
==============================================
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Paleta Atualizada */
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #4f70ff;
    --secondary-color: #2b2d42;
    --secondary-dark: #23242a;
    --secondary-light: #3d3f5d;
    
    /* Cores Neutras */
    --dark: #1a1a2e;
    --dark-blue: #16213e;
    --medium-blue: #0f3460;
    --light-blue: #e8f0fe;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #adb5bd;
    --dark-gray: #495057;
    
    /* Cores de Estado */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-round: 50px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.15);
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: var(--transition-normal);
}

.loader {
    width: 5rem;
    height: 5rem;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

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

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-round);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1.6rem;
}

.btn i {
    margin-left: 1rem;
}

.btn-lg {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(43, 45, 66, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(43, 45, 66, 0.4);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: var(--off-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-normal);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 0;
}

.header.sticky .logo a {
    color: var(--primary-color);
}

.header.sticky .nav-link {
    color: var(--dark);
}

.header.sticky .nav-link:hover {
    color: var(--primary-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-secondary);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    margin-right: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1.6rem;
    transition: var(--transition-normal);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-normal);
}

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

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 1001;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #3a56d4, #4361ee, #4f70ff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,117.3C672,107,768,117,864,138.7C960,160,1056,192,1152,186.7C1248,181,1344,139,1392,117.3L1440,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'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem 1.6rem;
    border-radius: 5rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.hero-cta {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

.badge-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.badge-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.badge-item img {
    height: 40px;
    width: auto;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-normal);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.badge-content {
    text-align: center;
}

.badge-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.badge-highlight {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.8rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-subtitle {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-round);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.section-title {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
}

.section-description {
    font-size: 1.8rem;
    color: var(--dark-gray);
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

/* ===== Cursos SECTION ===== */
.cursos-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.cursos-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.cursos-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 158, 0, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.cursos-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.curso-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

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

.curso-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 158, 0, 0.15);
}

.curso-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 158, 0, 0.2);
}

.curso-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--dark);
    padding: 0.5rem 3rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.curso-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.curso-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.curso-title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--dark);
}

.curso-description {
    margin-bottom: 2.4rem;
    color: var(--dark-gray);
}

.curso-features {
    margin-bottom: 2.4rem;
}

.curso-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.curso-features li i {
    color: var(--success);
}

.curso-price {
    margin-bottom: 2.4rem;
    padding: 2rem;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-md);
}

.price-original {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

.price-original span {
    text-decoration: line-through;
}

.price-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.price-installment {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

/* ===== PROCESSO SECTION ===== */
.processo-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.processo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(67, 97, 238, 0) 0%, 
        rgba(67, 97, 238, 0.3) 25%, 
        rgba(67, 97, 238, 0.3) 75%, 
        rgba(67, 97, 238, 0) 100%);
    z-index: 0;
}

.processo-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.processo-item {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
    border: 1px solid var(--light-gray);
}

.processo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.processo-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(67, 97, 238, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.4rem;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.processo-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6rem;
}

.processo-title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
    color: var(--dark);
}

.processo-description {
    color: var(--dark-gray);
}

/* ===== VANTAGENS SECTION ===== */
.vantagens-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.vantagens-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIxIiBmaWxsPSJyZ2JhKDY3LCA5NywgMjM4LCAwLjA1KSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

.vantagens-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.vantagem-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    position: relative;
    z-index: 1;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(67, 97, 238, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

.vantagem-title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
    color: var(--dark);
}

.vantagem-description {
    color: var(--dark-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-button .btn {
    font-size: 1.8rem;
    padding: 1.8rem 3.6rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.depoimentos-wrapper {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.depoimentos-wrapper::-webkit-scrollbar {
    display: none;
}

.depoimento-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.depoimento-rating {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 2.4rem;
    color: var(--dark-gray);
    position: relative;
}

.depoimento-text::before {
    content: '"';
    font-size: 6rem;
    color: var(--light-gray);
    position: absolute;
    top: -3rem;
    left: -1rem;
    z-index: -1;
    opacity: 0.5;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.depoimento-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.author-info span {
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.depoimentos-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    gap: 2rem;
}

.nav-prev, .nav-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.nav-prev:hover, .nav-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.nav-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--primary-color);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 158, 0, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition-normal);
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

/* ===== MATRICULA SECTION ===== */
.matricula-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.matricula-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDMpIi8+PC9zdmc+');
    opacity: 0.3;
    z-index: 0;
}

.matricula-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.matricula-content .section-title,
.matricula-content .section-subtitle {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.matricula-content .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.matricula-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.matricula-features .feature-item {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.matricula-features .feature-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.garantia-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 3rem;
}

.garantia-box img {
    width: 80px;
    height: 80px;
}

.garantia-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.garantia-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.oferta-timer {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
}

.oferta-timer h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.timer-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.timer-item {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1rem;
    text-align: center;
}

.timer-item span {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timer-item p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
}

.matricula-form {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.matricula-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark);
    font-size: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.5rem 1.8rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-size: 1.6rem;
    transition: var(--transition-normal);
    background-color: var(--off-white);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    background-color: var(--white);
}

.form-security {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--dark-gray);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNTkuNSA1OS41VjAuNUgwLjVWNTkuNUg1OS41WiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDMpIi8+PC9zdmc+');
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 3rem;
    margin-bottom: 1.6rem;
    color: var(--white);
    font-weight: 800;
}

.footer-logo span {
    color: var(--secondary-color);
    position: relative;
}

.footer-logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--secondary-color);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-whatsapp, .btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-phone {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-whatsapp:hover, .btn-phone:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: 1.4rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #25D366;
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius-round);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float a i {
    font-size: 2.4rem;
}

.whatsapp-float a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .hero-wrapper {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .matricula-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-header.text-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-normal);
        z-index: 10;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-buttons {
        display: none;
    }
    
    .depoimento-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .matricula-form {
        padding: 3rem 2rem;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .whatsapp-float a span {
        display: none;
    }
    
    .whatsapp-float a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* Reconhecimento Section */
.reconhecimento-section {
    padding: var(--section-padding);
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.reconhecimento-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='%234361ee' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.reconhecimento-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.reconhecimento-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reconhecimento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.reconhecimento-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reconhecimento-icon img {
    max-width: 80px;
    height: auto;
}

.reconhecimento-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.reconhecimento-item p {
    color: var(--color-text);
    line-height: 1.6;
}

.reconhecimento-cta {
    text-align: center;
    margin-top: 5rem;
}

/* Melhorias na seção de matrícula */
.pagamento-metodos {
    margin-top: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pagamento-metodos h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.pagamento-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pagamento-icons i {
    font-size: 3rem;
    color: var(--color-white);
}

.pagamento-metodos p {
    color: var(--color-white);
    opacity: 0.9;
    font-size: 1.4rem;
}

.form-testimonial {
    margin-top: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
}

.testimonial-author span {
    color: var(--color-white);
    font-weight: 500;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
    }
    
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}
