

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

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --dark: #0f0f23;
    --dark-lighter: #1a1a2e;
    --dark-card: #16213e;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, var(--dark-card) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-brand {
        font-size: 1.25rem;
    }
}

.nav-brand i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .nav-brand i {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        border-left: 1px solid rgba(139, 92, 246, 0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-300);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--primary);
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, var(--dark-card) 100%);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 2rem;
        text-align: center;
    }
}



@media (max-width: 768px) {
    .hero::before {
        width: 100%;
        opacity: 0.5;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.hero-text {
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-text {
        max-width: 100%;
        order: 1;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2; /* <--- este cambio */
    margin-bottom: 1.5rem;
    color: var(--white);
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1.5rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 0.75rem;
    }
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-visual {
        order: 0;
        margin-bottom: 1rem;
    }
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter));
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 12px;
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 480px) {
    .phone-screen {
        border-radius: 20px;
    }
}

.app-interface {
    padding: 30px 20px 20px;
    height: 100%;
}

@media (max-width: 480px) {
    .app-interface {
        padding: 20px 15px 15px;
    }
}

.status-bar {
    height: 20px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3));
    border-radius: 10px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .status-bar {
        height: 15px;
        margin-bottom: 20px;
    }
}

.balance-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

@media (max-width: 480px) {
    .balance-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.balance-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .balance-label {
        font-size: 0.75rem;
    }
}

.balance-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    .balance-amount {
        font-size: 1.5rem;
    }
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 480px) {
    .quick-actions {
        gap: 10px;
    }
}

.action-btn {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 480px) {
    .action-btn {
        padding: 15px 8px;
    }
}

.action-btn i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 480px) {
    .action-btn i {
        font-size: 1.2rem;
    }
}

.action-btn span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-300);
}

@media (max-width: 480px) {
    .action-btn span {
        font-size: 0.65rem;
    }
}


.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-lighter) 0%, var(--dark-card) 100%);
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

.service-category {
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .service-category {
        margin-bottom: 3rem;
    }
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.25rem;
        justify-content: center;
        text-align: center;
    }
}

.category-title i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


.service-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-2px);
    }
}

.service-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .card-icon {
        width: 50px;
        height: 50px;
    }
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .card-content h4 {
        font-size: 1.1rem;
    }
}

.card-content p {
    color: var(--gray-300);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .card-content p {
        font-size: 0.85rem;
    }
}

.card-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .card-tag {
        font-size: 0.65rem;
    }
}

.card-arrow {
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .card-arrow {
        display: none;
    }
}

.service-card:hover .card-arrow {
    color: var(--primary);
    transform: translateX(4px);
}


.claro-card .card-icon { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.movistar-card .card-icon { background: linear-gradient(135deg, #059669, #10b981); }
.personal-card .card-icon { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.tuenti-card .card-icon { background: linear-gradient(135deg, #ec4899, #f472b6); }
.sube-card .card-icon { background: linear-gradient(135deg, #ea580c, #f97316); }
.edenor-card .card-icon { background: linear-gradient(135deg, #eab308, #fbbf24); }
.directv-card .card-icon { background: linear-gradient(135deg, #374151, #6b7280); }
.antina-card .card-icon { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }


.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

@media (max-width: 768px) {
    .feature {
        padding: 1.5rem;
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .feature h3 {
        font-size: 1.25rem;
    }
}

.feature p {
    color: var(--gray-300);
    line-height: 1.6;
}


.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .footer-brand .brand {
        justify-content: center;
    }
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.link-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.link-group a,
.link-group span {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--gray-500);
    font-size: 0.9rem;
}


input, select, textarea {
    font-size: 16px !important; 
}

@media (max-width: 768px) {
    input, select, textarea {
        padding: 0.875rem 1rem !important;
        font-size: 16px !important;
    }
}


button, .btn {
    touch-action: manipulation; 
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    button, .btn {
        min-height: 44px; 
        padding: 0.875rem 1.5rem !important;
    }
}


.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


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


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

@media (max-width: 768px) {
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.hero-title,
.hero-subtitle,
.hero-stats {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-stats {
    animation-delay: 0.4s;
}

.phone-mockup {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}


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

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
}

.hidden-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

.visible-mobile {
    display: none;
}

@media (max-width: 768px) {
    .visible-mobile {
        display: block;
    }
}


@media (max-width: 768px) {
    .service-card:focus,
    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
}


@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
}

.hero-subtitle-country {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-subtitle-country {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle-country {
        font-size: 1.5rem;
    }
}

.hero-content.hero-single-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero {
    padding: 6rem 1rem 2rem; /* reduce espacio */
    min-height: auto; /* elimina altura forzada */
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }
}

.hero-subtitle-country {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-subtitle-country {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle-country {
        font-size: 1.5rem;
    }
}



