/* Landing Page Styles */
:root {
    --hero-bg: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --hero-text: #ffffff;
    --section-bg-alt: #f8fafc;
}

body.page-landing {
    background: #fff;
    color: var(--text-color);
}

/* Navbar: botões e links aproveitam espaço em qualquer idioma */
.page-landing .nav-menu .nav-link,
.page-landing .nav-menu .btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.page-landing .nav-menu .btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
@media (max-width: 768px) {
    .page-landing .nav-menu .nav-link,
    .page-landing .nav-menu .btn {
        white-space: normal;
        text-align: center;
        padding: 0.875rem 1rem;
    }
}

.landing-hero {
    background: var(--hero-bg);
    color: var(--hero-text);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAzNHYtNGgtMnY0aC0ydjRoMnY0aDJ2LTRoMnYtNGgtMnpNMzYgMzRWMzRoNDB2NGgtNDB2LTR6IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz48L2c+PC9zdmc+');
    opacity: 0.1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1200px) {
    .hero-content {
        max-width: 1400px;
    }
}

/* Logo centralizado no hero da home – destaque principal */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.hero-logo-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero-logo-link:hover {
    opacity: 0.95;
    transform: scale(1.02);
}
.hero-logo-img {
    height: 200px;
    width: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px) {
    .hero-logo-wrap {
        margin-bottom: 1.5rem;
    }
    .hero-logo-img {
        height: 160px;
        width: 160px;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary-color);
    background: linear-gradient(135deg, #FF5252 0%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Search Box in Hero – flex para aproveitar espaço em qualquer idioma (2 ou 4 campos) */
.hero-search-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 3rem;
    align-items: stretch;
}

.hero-search-group {
    position: relative;
    display: flex;
    flex: 1 1 180px;
    min-width: 0;
}

.hero-search-group:first-child {
    flex: 1 1 220px;
}

.hero-search-input,
.hero-search-select {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 1rem 0 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #ffffff;
    color: #1e293b;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-search-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%231e293b" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.hero-search-input::placeholder {
    color: #64748b;
    opacity: 1;
}

.hero-search-input:focus,
.hero-search-select:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.25);
}

.hero-search-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toggle Button 18+ */
.hero-search-adult-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.hero-search-adult-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-search-adult-toggle.active {
    background: rgba(220, 20, 60, 0.2);
    border-color: #DC143C;
    color: #ff8fa3;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.2);
}

.hero-search-adult-toggle i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Modal 18+ Confirmation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: rgba(220, 20, 60, 0.15);
    color: #DC143C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(220, 20, 60, 0.05);
}

.modal-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-text {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    border: none;
}

.btn-modal-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
}

.btn-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    color: #fff;
}

.btn-modal-confirm {
    background: #DC143C;
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-modal-confirm:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

/* Responsividade do botão toggle */
@media (max-width: 640px) {
    .hero-search-adult-toggle {
        width: 100%;
    }
}

.hero-search-btn {
    flex: 0 0 auto;
    min-width: 120px;
    height: 50px;
    padding: 0 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

@media (min-width: 640px) {
    .hero-search-btn {
        padding: 0 1.75rem;
        min-width: 140px;
    }
}

@media (min-width: 900px) {
    .hero-search-box {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
    .hero-search-group {
        flex: 1 1 160px;
        max-width: 320px;
    }
    .hero-search-group:first-child {
        flex: 2 1 240px;
        max-width: none;
    }
    .hero-search-btn {
        padding: 0 2rem;
        min-width: 160px;
    }
}

/* Idiomas com textos longos: botão pode quebrar em telas muito estreitas */
@media (max-width: 380px) {
    .hero-search-btn {
        white-space: normal;
        min-height: 50px;
        padding: 0.75rem 1rem;
        text-align: center;
    }
}

.hero-search-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.4);
}

/* Features Section */
.landing-section {
    padding: 5rem 0;
}

.section-bg-alt {
    background: var(--section-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card usa variáveis do tema do perfil (--card-*) definidas inline por usuário */
.profile-card {
    background: var(--card-bg, #fff);
    border: 1px solid var(--card-border, var(--border-color));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--card-text, var(--text-color));
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.12);
    border-color: var(--card-accent, var(--primary-color));
}

/* Card 18+: sombra em degradê vermelho */
.profile-card-adult {
    border-color: rgba(220, 20, 60, 0.45);
    /* Sombra degradê: várias camadas de vermelho que vão suavizando */
    box-shadow: 0 0 0 1px rgba(220, 20, 60, 0.25),
                0 4px 12px rgba(220, 20, 60, 0.2),
                0 12px 28px -6px rgba(190, 30, 60, 0.35),
                0 24px 48px -12px rgba(153, 27, 27, 0.25);
}
.profile-card-adult:hover {
    box-shadow: 0 0 0 1px rgba(220, 20, 60, 0.4),
                0 8px 20px rgba(220, 20, 60, 0.3),
                0 20px 40px -8px rgba(190, 30, 60, 0.45),
                0 32px 64px -16px rgba(153, 27, 27, 0.35);
    border-color: rgba(220, 20, 60, 0.6);
}

.profile-card-cover {
    height: 100px;
    background: var(--card-cover-gradient, linear-gradient(135deg, var(--card-cover, #cbd5e1) 0%, var(--card-bg, #e2e8f0) 100%));
    background-size: cover;
    background-position: center;
}

.profile-card-content {
    padding: 0 1.5rem 1.5rem;
    margin-top: -40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--card-bg, #fff);
    background: var(--card-bg, #fff);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.profile-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-cover, #e2e8f0);
    color: var(--card-text-secondary, #94a3b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.profile-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--card-text, var(--text-color));
}

.profile-card-bio {
    font-size: 0.9rem;
    color: var(--card-text-secondary, var(--text-light));
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-card-location {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--card-accent, var(--primary-color));
    background: var(--bg-light, #f1f5f9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===== Variações por template (cards da landing) ===== */
/* Template 2 - Business Card (horizontal) */
.profile-card-template-2 {
    flex-direction: row;
    min-height: 180px;
}
.profile-card-template-2 .profile-card-cover {
    width: 38%;
    height: auto;
    min-height: 100%;
}
.profile-card-template-2 .profile-card-content {
    margin-top: 0;
    padding: 1.25rem;
    align-items: flex-start;
    text-align: left;
}
.profile-card-template-2 .profile-card-avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
    border-width: 3px;
}
.profile-card-template-2 .profile-card-location {
    margin-top: 0.75rem;
}
@media (max-width: 640px) {
    .profile-card-template-2 {
        flex-direction: column;
    }
    .profile-card-template-2 .profile-card-cover {
        width: 100%;
        height: 100px;
        min-height: 100px;
    }
    .profile-card-template-2 .profile-card-content {
        align-items: center;
        text-align: center;
    }
}

/* Template 4 - Dark */
.profile-card-template-4 {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.08);
    color: #f9fafb;
}
.profile-card-template-4 .profile-card-cover {
    background: linear-gradient(135deg, #1f2937 0%, #0b1220 100%);
}
.profile-card-template-4 .profile-card-avatar {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.15);
}
.profile-card-template-4 .profile-card-name {
    color: #f9fafb;
}
.profile-card-template-4 .profile-card-bio {
    color: #d1d5db;
}
.profile-card-template-4 .profile-card-location {
    background: rgba(255, 255, 255, 0.08);
    color: var(--card-accent, #f97316);
}

/* Template 6 - Glassmorphism */
.profile-card-template-6 {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    color: #ffffff;
}
.profile-card-template-6 .profile-card-cover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
}
.profile-card-template-6 .profile-card-avatar {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}
.profile-card-template-6 .profile-card-name,
.profile-card-template-6 .profile-card-bio {
    color: #ffffff;
}
.profile-card-template-6 .profile-card-location {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Template 7 - Neon */
.profile-card-template-7 {
    background: #0a0a0f;
    border: 2px solid #00ffff;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.35);
    color: #ffffff;
}
.profile-card-template-7 .profile-card-cover {
    background: linear-gradient(135deg, #0f172a 0%, #1a0f2e 100%);
}
.profile-card-template-7 .profile-card-avatar {
    border-color: #ff00ff;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.5);
}
.profile-card-template-7 .profile-card-name {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.profile-card-template-7 .profile-card-bio {
    color: #cbd5f5;
}
.profile-card-template-7 .profile-card-location {
    background: rgba(0, 255, 255, 0.15);
    color: #00ffff;
}

/* Template 8 - Minimal */
.profile-card-template-8 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: none;
}
.profile-card-template-8 .profile-card-cover {
    height: 70px;
    background: #f3f4f6;
}
.profile-card-template-8 .profile-card-avatar {
    border: none;
    box-shadow: none;
}
.profile-card-template-8 .profile-card-name {
    font-weight: 400;
}
.profile-card-template-8 .profile-card-location {
    background: #f3f4f6;
}

/* Template 9 - Gradient */
.profile-card-template-9 {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.profile-card-template-9 .profile-card-cover {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
}

/* Template 10 - Neumorphism */
.profile-card-template-10 {
    background: #e0e5ec;
    border: none;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.45), -8px -8px 16px rgba(255, 255, 255, 0.9);
}
.profile-card-template-10 .profile-card-avatar {
    background: #e0e5ec;
    border: none;
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.5), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}
.profile-card-template-10 .profile-card-cover {
    background: #e0e5ec;
}

/* Template 11 - Retro */
.profile-card-template-11 {
    background: #f7efe4;
    border: 3px double #8b7355;
    border-radius: 6px;
    color: #3d3229;
}
.profile-card-template-11 .profile-card-cover {
    background: linear-gradient(135deg, #e8dfd4 0%, #d4c4b0 100%);
}
.profile-card-template-11 .profile-card-avatar {
    border-radius: 6px;
    border-color: #8b7355;
    filter: sepia(0.15);
}
.profile-card-template-11 .profile-card-name {
    font-family: Georgia, "Times New Roman", serif;
}
.profile-card-template-11 .profile-card-bio {
    color: #5c4f45;
}
.profile-card-template-11 .profile-card-location {
    background: rgba(139, 115, 85, 0.15);
    color: #6b5b4f;
}

/* Template 12 - Dark Gold */
.profile-card-template-12 {
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ffffff;
}
.profile-card-template-12 .profile-card-cover {
    background: linear-gradient(145deg, #2a2a2a 0%, #141414 100%);
}
.profile-card-template-12 .profile-card-avatar {
    border-color: #d4af37;
}
.profile-card-template-12 .profile-card-bio {
    color: rgba(255, 255, 255, 0.8);
}
.profile-card-template-12 .profile-card-location {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

/* Template 13 - Nature */
.profile-card-template-13 {
    background: #f1f8f2;
    border: 2px solid rgba(46, 125, 50, 0.3);
    color: #1b5e20;
}
.profile-card-template-13 .profile-card-cover {
    background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
}
.profile-card-template-13 .profile-card-avatar {
    border-color: #2e7d32;
}
.profile-card-template-13 .profile-card-bio {
    color: #2e7d32;
}
.profile-card-template-13 .profile-card-location {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

/* Template 14 - Monochrome */
.profile-card-template-14 {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0;
    color: #000000;
}
.profile-card-template-14 .profile-card-cover {
    background: #000000;
}
.profile-card-template-14 .profile-card-avatar {
    border-radius: 0;
    border-color: #000000;
    box-shadow: 6px 6px 0 #000000;
}
.profile-card-template-14 .profile-card-bio {
    color: #333333;
}
.profile-card-template-14 .profile-card-location {
    background: #000000;
    color: #ffffff;
}

/* Template 15 - Sunset */
.profile-card-template-15 {
    background: linear-gradient(160deg, #ffecd2 0%, #fcb69f 35%, #fecfef 100%);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #5d4037;
}
.profile-card-template-15 .profile-card-cover {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.profile-card-template-15 .profile-card-avatar {
    border-color: #ff8a65;
}
.profile-card-template-15 .profile-card-bio {
    color: #5d4037;
}
.profile-card-template-15 .profile-card-location {
    background: rgba(255, 152, 0, 0.15);
    color: #bf360c;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #fff;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .hero-search-box { padding: 1rem; }
    .hero-search-group { flex-basis: 100%; }
    .hero-search-btn { width: 100%; justify-content: center; min-width: 0; }
}
