/* Variables */
:root {
    --primary-blue: #0065AE;
    --primary-dark: #1A2F4A;
    --primary-light: #2D4A6A;
    --accent-blue: #0077cc;
    --text-dark: #1A2F4A;
    --text-gray: #5a6a7a;
    --text-light: #8a9aaa;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* ======= NAVBAR ======= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 45px; width: auto; filter: brightness(0); }
.nav-links { display: flex; align-items: center; gap: 35px; }
.nav-links a {
    color: var(--text-dark); font-size: 0.95rem; font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--primary-blue); }
.nav-links-login {
    padding: 8px 20px; border: 2px solid var(--primary-blue);
    border-radius: 10px; color: var(--primary-blue) !important;
    font-weight: 600 !important; transition: all 0.3s ease !important;
}
.nav-links-login:hover { background: var(--primary-blue); color: white !important; }
.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white !important; border-radius: 10px; font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 101, 174, 0.3);
    transition: all 0.3s ease !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 101, 174, 0.4); }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.mobile-menu-btn span {
    display: block; width: 25px; height: 2px;
    background: var(--text-dark); border-radius: 2px;
    transition: all 0.3s ease;
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 32px; border-radius: 12px;
    font-weight: 600; font-size: 1rem; border: none;
    cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white; box-shadow: 0 8px 25px rgba(0, 101, 174, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0, 101, 174, 0.5); }
.btn-white {
    background: white; color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.btn-outline {
    background: transparent; color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: white; transform: translateY(-3px); }

/* ======= HERO ======= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-blue) 100%);
    position: relative; display: flex; align-items: center;
    padding: 120px 30px 80px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(77,208,225,0.1) 0%, transparent 70%);
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,165,0.08) 0%, transparent 70%);
}
.hero-container {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-content { color: white; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 500; color: white;
    margin-bottom: 30px; backdrop-filter: blur(10px);
}
.hero-badge svg { color: #f59e0b; }
.hero-content h1 {
    font-size: 3.2rem; font-weight: 800; line-height: 1.15;
    color: white; margin-bottom: 20px;
}
.hero-content h1 span { color: #4dd0e1; }
.hero-subtitle {
    color: rgba(255, 255, 255, 0.8); font-size: 1.15rem;
    margin-bottom: 40px; max-width: 520px; line-height: 1.7;
}
.hero-stats {
    display: flex; gap: 40px; margin-bottom: 40px;
}
.hero-stat { text-align: left; }
.hero-stat-number {
    display: block; font-size: 2rem; font-weight: 800; color: white;
}
.hero-stat-label {
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); font-weight: 500;
}
.hero-buttons { display: flex; gap: 16px; }
.hero-dgert {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px; padding: 14px 18px; margin-top: 24px;
}
.hero-dgert-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.hero-dgert-text { display: flex; flex-direction: column; gap: 2px; }
.hero-dgert-text strong { font-size: 0.9rem; font-weight: 600; color: white; }
.hero-dgert-text span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }
.hero-image { position: relative; }
.hero-image > img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}
.hero-image:hover > img { transform: perspective(1000px) rotateY(0deg); }
.hero-image-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: white; border-radius: 16px;
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}
.hero-image-badge-text strong {
    display: block; font-size: 0.85rem; color: var(--text-dark);
}
.hero-image-badge-text span {
    font-size: 0.8rem; color: var(--success-green); font-weight: 600;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ======= DGERT ======= */
.dgert-section {
    padding: 40px 30px;
    background: white;
}
.dgert-section .container {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
}
.dgert-badge-main {
    display: flex; align-items: center; gap: 25px;
    padding: 25px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px; border: 2px solid #e2e8f0;
}
.dgert-img { height: 60px; width: auto; }
.dgert-text { max-width: 400px; }
.dgert-text strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.dgert-text span { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; }
.dgert-features { display: flex; gap: 24px; }
.dgert-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--text-dark); font-weight: 500;
}

/* ======= SECTIONS COMMON ======= */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.section-header p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-label {
    display: inline-block; background: linear-gradient(135deg, rgba(0,101,174,0.1), rgba(0,101,174,0.05));
    color: var(--primary-blue); padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 12px;
}
.bg-light { background: var(--bg-light); }
.section-divider { padding-top: 60px; }

/* ======= FEATURES GRID ======= */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.feature-card {
    background: white; border-radius: 20px; padding: 35px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease; border: 1px solid #f0f0f0;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    background: var(--primary-blue);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

/* ======= PLATFORM SHOWCASE ======= */
.showcase-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-bottom: 100px;
}
.showcase-item:last-child { margin-bottom: 0; }
.showcase-item.reverse { direction: rtl; }
.showcase-item.reverse > * { direction: ltr; }
.showcase-text h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.showcase-text p { color: var(--text-gray); font-size: 1.05rem; margin-bottom: 24px; line-height: 1.7; }
.showcase-features { display: flex; flex-direction: column; gap: 14px; }
.showcase-features li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-dark); font-size: 0.95rem;
}
.showcase-features li::before {
    content: '✓'; display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.showcase-visual { border-radius: 20px; overflow: hidden; }
.showcase-img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ======= GALLERY ======= */
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 50px;
}
.gallery-card {
    position: relative; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer; transition: all 0.3s ease;
}
.gallery-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.gallery-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-card h4 {
    padding: 14px 16px; font-size: 0.9rem; font-weight: 600;
    text-align: center; background: white;
}

/* ======= CURSO PRATICO ======= */
.curso-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-blue) 100%);
    color: #fff; position: relative;
}
.curso-header { text-align: center; margin-bottom: 60px; }
.curso-header h2 { font-size: 2.4rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.curso-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.curso-price {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 28px; border-radius: 50px;
    font-size: 1.8rem; font-weight: 700; margin-top: 16px;
}
.curso-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px; margin-bottom: 48px; margin-top: 50px;
}
.curso-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.curso-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.curso-card .card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.curso-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.curso-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }
.curso-cta { text-align: center; }

/* ======= TEAM ======= */
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 60px;
}
.team-card {
    text-align: center; padding: 40px 30px;
    background: var(--bg-light); border-radius: 20px;
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.team-avatar-img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 20px; display: block;
    border: 4px solid white; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.team-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role {
    color: var(--primary-blue); font-weight: 600;
    font-size: 0.95rem; margin-bottom: 12px;
}
.team-card .desc { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; }

/* ======= PRICING ======= */
.pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 30px; max-width: 900px; margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    background: white; border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden; border: 2px solid #e2e8f0;
    position: relative; transition: all 0.3s ease;
    display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); }
.pricing-card.featured { border-color: var(--primary-blue); }
.pricing-card-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--primary-blue); color: white;
    font-size: 0.75rem; font-weight: 600;
    padding: 4px 14px; border-radius: 50px; z-index: 1;
}
.pricing-card-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 35px 30px; text-align: center; color: white;
}
.pricing-card-header h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }
.pricing-amount { display: flex; align-items: flex-start; justify-content: center; }
.pricing-amount .currency { font-size: 1.6rem; font-weight: 700; margin-top: 6px; }
.pricing-amount .value { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.pricing-amount .decimals { font-size: 1.6rem; font-weight: 700; margin-top: 6px; }
.pricing-period { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 8px; }
.pricing-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.pricing-card-body .pricing-features-list { flex: 1; }
.pricing-features-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 14px; margin-bottom: 30px;
}
.pricing-features-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: var(--text-dark);
}
.pricing-features-list li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-features-list li strong { font-weight: 600; }
.pricing-includes {
    display: flex; align-items: center; gap: 10px;
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: 12px; padding: 14px 16px;
    margin-bottom: 20px; font-size: 0.9rem;
    color: var(--primary-dark); font-weight: 500;
}
.pricing-includes svg { flex-shrink: 0; }
.pricing-cta { text-align: center; }
.pricing-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 28px; }
.pricing-guarantee {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 0.85rem; color: var(--text-light);
    margin-top: 40px;
}

/* ======= SANTANDER ======= */
.santander { background: var(--bg-light); padding: 80px 0; }
.santander .container { max-width: 700px; text-align: center; }
.santander h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.santander .subtitle { color: var(--text-gray); font-size: 1.05rem; margin-bottom: 12px; }
.santander .detail { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 32px; }
.santander-form {
    display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}
.santander-form input {
    flex: 1; padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: 12px;
    font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s;
}
.santander-form input:focus { outline: none; border-color: var(--primary-blue); }
.santander-form button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: #fff; padding: 14px 28px; border-radius: 12px;
    border: none; font-weight: 600; cursor: pointer;
    transition: all 0.3s; white-space: nowrap;
}
.santander-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,101,174,0.35); }

/* ======= CTA ======= */
.cta {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-blue) 100%);
    position: relative; overflow: hidden; text-align: center; color: #fff;
}
.cta-container { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
.cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 35px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
.footer {
    background: var(--primary-dark); color: rgba(255,255,255,0.7);
    padding: 60px 30px 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 40px; margin-bottom: 40px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 16px 0; max-width: 360px; }
.footer-brand .email { color: #4dd0e1; }
.footer-logo-img { height: 40px; width: auto; }
.footer h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); }
.footer-social img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-social a:hover img { opacity: 1; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ======= GALLERY MODAL ======= */
.gallery-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.9); z-index: 2000;
    align-items: center; justify-content: center;
}
.gallery-modal.active { display: flex; }
.gallery-modal-img {
    max-width: 85vw; max-height: 85vh; border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.gallery-modal-close {
    position: absolute; top: 20px; right: 30px;
    background: none; border: none; color: white;
    font-size: 2.5rem; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: opacity 0.2s;
}
.gallery-modal-close:hover { opacity: 1; }
.gallery-modal-prev,
.gallery-modal-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1); border: none; color: white;
    font-size: 3rem; cursor: pointer; padding: 10px 18px;
    border-radius: 12px; line-height: 1;
    opacity: 0.6; transition: all 0.2s;
}
.gallery-modal-prev:hover,
.gallery-modal-next:hover { opacity: 1; background: rgba(255, 255, 255, 0.2); }
.gallery-modal-prev { left: 20px; }
.gallery-modal-next { right: 20px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-item { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
    .showcase-item.reverse { direction: ltr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .curso-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; margin-top: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 100px 20px 60px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .dgert-badge-main { flex-direction: column; text-align: center; padding: 20px; }
}
@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .santander-form { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
