@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Panton Narrow Black Italic Caps';
    font-style: normal;
    font-weight: normal;
    src: local('Panton Narrow Black Italic Caps'), url('/fonts/PantonNarrowDemoBlackItalic.woff') format('woff');
}

:root {
    --primary-color: #152f5d;
    --secondary-color: #1a365d;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --light-bg: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: transparent;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================================
   1. HEADER DESKTOP (CORRIGIDO)
   ============================================================ */
header {
    display: block; /* Garante visibilidade no PC */
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
}

.container-header {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    position: relative;
    min-width: 120px;
}

.logo a {
    background: url('../imgs/H_Branco.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 80px;
}

.logo a:hover {
    text-decoration: none;
    color: white;
}

/* Botão toggle deve sumir no Desktop neste layout separado */
.menu-toggle {
    display: none; 
}

/* NAV DESKTOP (AQUI ESTAVA O ERRO) */
/* Antes estava absolute/top:100%, agora volta para static/flex */
.nav {
    position: static; 
    display: flex;
    gap: 2.5rem;
    margin: 0;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.nav.active {
    display: flex; 
}

/* LINKS DESKTOP */
.nav-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    width: auto; /* Remove largura 100% */
    text-align: left;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(175, 178, 184, 0.356);
    transform: translateY(-1px);
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header após rolar (fundo branco e sombra) */
header.scrolled {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(21, 47, 93, 0.1);
    box-shadow: 0 4px 20px rgba(21, 47, 93, 0.15);
}

header.scrolled .nav-link {
    color: #4a5568;
    text-shadow: none;
}

header.scrolled .logo a {
    color: #152f5d;
    text-decoration: none;
    background: url('../imgs/H_Preferencial.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 100%;
}

header.scrolled .nav-link:hover,
.nav-link.active {
    color: #152f5d;
    background: rgba(21, 47, 93, 0.08);
    transform: translateY(-1px);
}

/* Links quando header transparente */
header.transparent .nav-links li a {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

header.transparent .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Links quando header com background */
header.scrolled .nav-links li a {
    color: #333;
    text-shadow: none;
}

header.scrolled .nav-links li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

/* ============================================================
   2. HEADER MOBILE (SEPARADO)
   ============================================================ */
.header-mobile {
    display: none; /* Oculto inicialmente no PC */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
    align-items: center; 
    justify-content: space-between;
}

.header-mobile .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto; 
    margin-left: 20px;
}

.header-mobile .logo img {
    height: 27px;
    width: auto;
    object-fit: contain;
    margin: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 105%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu.active {
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.menu i {
    font-size: 28px;
    color: #152f5d;
    display: block;
    line-height: 1;
}

.menu i.fas.fa-bars {
    transition: transform 0.3s ease;
}

.menu.active i.fas.fa-bars {
    transform: rotate(90deg);
}

#mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 1rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

#mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#mobile-menu .nav-link {
    color: #333;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

/* ============================================================
   SEÇÕES GERAIS (MANTIDAS IGUAIS)
   ============================================================ */

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0; 
    z-index: -1; 
    background: linear-gradient(135deg, #152f5d 0%, #1a365d 50%, #2d3748 100%);
    pointer-events: none; 
    overflow: hidden; 
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(2px);
    animation: float-particles 25s infinite ease-in-out;
}

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

.home {
    background: url('https://f.i.uol.com.br/fotografia/2025/04/28/1745872369680fe5f183c30_1745872369_3x2_rt.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.home.animate {
    margin: 0 !important;
    transform: none !important;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 47, 93, 0.85);
    z-index: 1;
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 200px;
    max-width: 1200px;
    width: 100%;
}

.home h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.home p { font-size: 1.2rem; margin-bottom: 2rem; }

.home-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.home-group { 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
    justify-content: center;
    align-items: center;
}
.home-image { align-self: flex-end; width: 12%; min-width: 150px; }

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover { transform: scale(1.05); background-color: var(--accent-color); }

section { padding: 5rem 1rem; }
section h2 { text-align: center; margin-bottom: 1rem; font-size: 2.5rem; color: var(--primary-color); }

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    padding: 60px 0 0 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 2rem 0;
}

.benefits h2 { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.1);
    transform: translateY(10px);
    transition: transform 0.8s ease;
}

.benefit-card:hover { transform: translateY(-10px); }
.benefit-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; }

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    height: auto;
}

.stat-item {
    text-align: center;
    min-width: 120px;
    flex: 1;
    max-width: 200px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-item.animate { opacity: 1; transform: translateY(0); }
.stat-item h3 { font-size: 3rem; font-weight: 700; color: #2c5282; margin: 0 0 0.5rem 0; line-height: 1; }
.stat-item p { font-size: 1rem; color: #718096; margin: 0; font-weight: 400; line-height: 1.2; height: 1.5rem; }

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

.container-swipper {
    width: 100%;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.swiper { height: 15rem; width: 100vw; }
.swiper-wrapper { display: flex !important; min-height: 15rem; display: inline-flex; transition-timing-function: linear !important; }

.swiper-slide {
    transition-timing-function: linear !important;
    opacity: 0.6;
    margin: 0;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 290px !important;
    height: auto;
}

.swiper-slide img {
    max-height: none; max-width: none; width: auto; height: auto; object-fit: contain; border-radius: 20px; display: block;
}

.swiper-slide:hover { opacity: 1; }

.how-it-works {
    width: 100%; position: relative; overflow: hidden; padding: 5rem 1rem;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.how-it-works-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}

.how-it-works > * { position: relative; z-index: 1; }

.how-it-works a {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white; border: none; padding: 1.5rem 2.5rem; border-radius: 16px;
    font-size: 1.25rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(21, 47, 93, 0.3); width: 30rem; text-decoration: none; max-width: 100%;
}

.how-it-works a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(21, 47, 93, 0.4);
    background: linear-gradient(135deg, #1f5fe9 0%, #6ba4ff 100%);
    color: white; text-decoration: none;
}

.how-it-works h5 { text-align: center; font-weight: bold; font-size: 1.1rem; color: white; z-index: 2; }

.steps {
    display: grid; 
    grid-template-columns: repeat(auto-fit, 300px); 
    gap: 2rem;
    max-width: 2000px; 
    margin: 0 auto; 
    justify-content: center;
}

.steps h3 { width: 270px; }
.steps p { width: 420px; }

.step {
    text-align: center; padding: 2rem; width: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease; margin-bottom: 5rem;
}

.step.animate { opacity: 1 !important; transform: translateY(0) !important; }

.step-number {
    width: 50px; height: 50px; background-color: var(--primary-color); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-weight: bold;
}

.registration { background-color: var(--light-bg); border-top: 1px solid rgba(0,0,0,0.05); }
.registration h2 { color: var(--primary-color); position: relative; }
.registration h2::before { content: ''; display: block; width: 80px; height: 4px; background-color: var(--accent-color); margin: 0 auto 15px; }
.registration h2::after { content: '\f21c'; font-weight: 900; font-size: 1.5rem; color: var(--accent-color); position: absolute; top: -15px; margin-left: 10px; }

.registration-container {
    display: flex; flex-direction: row; justify-content: center; align-items: flex-start;
    gap: 2.5rem; max-width: 950px; margin: 0 auto; padding: 2rem 0;
}

.registration-content { flex: 1 1 350px; min-width: 320px; }
.registration-benefits { flex: 1 1 320px; min-width: 260px; margin: 0; }

#registration-form {
    max-width: 500px; margin: 0 auto; display: flex; flex-direction: column;
    gap: 1rem; background-color: var(--white); padding: 2rem;
    border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#registration-form input { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
.submit-button {
    padding: 1rem; background-color: var(--primary-color); color: var(--white);
    border: none; border-radius: 5px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background-color 0.3s ease;
}
.submit-button:hover { background-color: var(--accent-color); }

footer { color: white; background-color: #123e7a; padding: 2rem 0rem; width: 100%; }

.footer-content {
    max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: flex-start; gap: 15rem; padding: 0 2rem;
}

.footer-section { flex: 1; }
.footer-legal { text-align: center; padding-top: 4rem; }
.footer-social { text-align: right; }
.footer-contact p { margin-bottom: 0.5rem; }
.social-links i { font-size: 1.8rem; transition: transform 0.3s ease; color: white; }
.social-links a:hover i { transform: scale(1.1); color: #3182ce; }
.footer-links-legal a { color: white; text-decoration: underline; margin: 0 0.5rem; }
.footer-logo h3 { font-family: 'Panton Narrow Black Italic Caps'; font-weight: 800; }

.partners { background-color: var(--white); border-top: 1px solid rgba(0,0,0,0.05); }
.partners h2 { color: var(--primary-color); position: relative; }
.partners h2::before { content: ''; display: block; width: 80px; height: 4px; background-color: var(--accent-color); margin: 0 auto 15px; }
.partners h2::after { content: '\f54e'; font-weight: 900; font-size: 1.5rem; color: var(--accent-color); position: absolute; top: -15px; margin-left: 10px; }

.partner-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    max-width: 1200px; margin: 0 auto; align-items: start;
}

.partner-benefits {
    background-color: var(--light-bg); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.partner-benefits h3 { margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--primary-color); }
.partner-benefits ul { list-style: none; padding: 0; }
.partner-benefits li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; align-items: center; }
.partner-benefits li i { color: var(--primary-color); margin-right: 0.8rem; width: 20px; text-align: center; }

.partner-form-container form {
    display: flex; flex-direction: column; gap: 1rem;
    background-color: var(--light-bg); padding: 2rem;
    border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

input, textarea, select { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
textarea { resize: vertical; }

.registration-benefits {
    background: var(--white); border-radius: 12px; box-shadow: 0 4px 16px rgba(21,47,93,0.08);
    padding: 2.5rem 2rem; margin: 2rem auto 0 auto; max-width: 420px; text-align: left;
    font-size: 1.25rem; font-weight: 400; color: var(--text-color);
    display: flex; flex-direction: column; align-items: flex-start;
}

.registration-benefits h3 { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 1.2rem; font-weight: 700; }
.registration-benefits ul { list-style: none; padding: 0; margin: 0; width: 100%; }
.registration-benefits li { display: flex; align-items: center; margin-bottom: 1.1rem; font-size: 1.18em; font-weight: 500; }
.registration-benefits li i { color: var(--accent-color); margin-right: 0.7rem; font-size: 1.3em; }

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

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

.author-info { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }

.testimonial-card {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(21,47,93,0.08); padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex; flex-direction: column; align-items: flex-start;
    min-height: 220px; transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer; opacity: 1; transform: translateY(10px); justify-content: space-between;
}

.testimonial-card.animate { opacity: 1 !important; transform: translateY(0) !important; }
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03); box-shadow: 0 8px 24px rgba(21,47,93,0.13);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content { font-size: 1.1rem; color: #ffffff; margin-bottom: 1.2rem; }
.testimonial-content i { color: #3182ce; font-size: 1.5rem; margin-bottom: 0.5rem; }
.testimonial-author h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; color: #ffffff; }
.testimonial-author p { font-size: 1rem; color: #bebebe; margin: 0; }

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

/* ============================================================
   MEDIA QUERIES (AS REGRAS DE TROCA DE HEADER ESTÃO AQUI)
   ============================================================ */

/* 1. TABLETS E TELAS MÉDIAS (Abaixo de 1024px) */
@media (max-width: 1024px) {
    .nav-links { gap: 1rem; padding: 0 1rem; }
    .nav { gap: 1.5rem; }
    .home { height: calc(80vh - 80px); margin-top: 80px; }
    .home h1 { font-size: 3rem; }
    .footer-content { gap: 8rem; }
    .steps { grid-template-columns: repeat(auto-fit, 300px); }
    .steps h3 { width: 250px; }
    .steps p { width: 300px; }
    .benefits-grid {
        display: grid;
        width: 80%;
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
        padding: 1rem 0;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    header {
        display: none !important;
    }
    .header-mobile {
        display: flex; /* Flex para alinhar logo e menu */
    }
    
    body { padding-top: 80px; }
    .menu { display: block; }
    .home { height: calc(88vh - 80px); margin-top: 80px; }
    .home-image { width: 30%; align-self: center; }
    .home h1 { font-size: 2.5rem; }
    .home p { font-size: 1.1rem; }
    
    .registration-container, .footer-content, .partner-content{
        flex-direction: column;
    }
    
    .registration-content, .registration-benefits { width: 100%; min-width: 0; }
    .registration-benefits { margin-top: 0; padding: 1.5rem 1rem; font-size: 1.1rem; }
    .testimonials-grid, .steps { grid-template-columns: 1fr; }
    
    .footer-content { 
        gap: 2rem; 
        text-align: center; 
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-social { text-align: center; }
    .footer-legal { padding-top: 2rem; }
    
    .how-it-works a { width: 100%; max-width: 400px; padding: 1.2rem 2rem; font-size: 1.1rem; }
}

/* 3. SMARTPHONES (Abaixo de 768px) */
@media (max-width: 768px) {
    /* Apenas ajustes de tamanho, o header já trocou no 900px */
    section { padding: 3rem 1rem; }
    section h2 { font-size: 2rem; }
    .section-subtitle { 
        font-size: 1rem; 
        width: 80%;
    }
    
    .benefit-card { padding: 1.5rem; }
    .container1 { gap: 2.5rem; padding: 50px 15px; }
    .stat-item { min-width: auto; max-width: none; }
    .stat-item h3 { font-size: 2.5rem; }
    .stat-item p { font-size: 0.9rem; }
    
    .steps { gap: 1rem; }
    .step { padding: 1.5rem; margin-bottom: 2rem; }
    .steps h3, .steps p { width: 100%; }
    .steps h3 { font-size: 1.2rem; }
    
    .swiper-slide { width: 200px !important; }
    .swiper-wrapper { height: 12rem !important; }
    
    .home-subtitle{
        width: 80%;
    }
    .home-buttons { flex-direction: column; gap: 1rem; }
    .home-buttons a{
        width: 100%;
        font-size: 16px;
    }
    .home { background-position: center center; background-size: cover; min-height: 400px; height: calc(90vh - 80px); }
    .cta-button { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    
    #registration-form, .testimonial-card { padding: 1.5rem; }
    .testimonial-card { min-height: 180px; }
}

/* 4. TELAS MUITO PEQUENAS (Abaixo de 480px) */
@media (max-width: 480px) {
    .home h1 { font-size: 2rem; }
    .home p { font-size: 1rem; }
    .home-image { width: 40%; }
    .home { min-height: 350px; padding: 0 0.5rem; }
    section h2 { font-size: 1.8rem; }
    .container1 { padding: 40px 15px; gap: 2rem; }
    .stat-item h3 { font-size: 2.2rem; }
    .benefit-card { padding: 1rem; }
    .benefit-card i { font-size: 2rem; }
    .step { padding: 1rem; }
    .step-number { width: 40px; height: 40px; font-size: 0.9rem; }
    .how-it-works a { padding: 1rem 1.5rem; font-size: 1rem; }
    .footer-content { padding: 0 1rem; }
    .social-links i { font-size: 1.5rem; }
    .swiper-slide { width: 150px !important; }
    .swiper-wrapper { height: 10rem !important; }
    .cta-button { padding: 0.7rem 1.2rem; font-size: 0.8rem; }
    .benefits-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
