/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --gold: #c9a227;
    --cream: #fcf9f3;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--navy);
    font-weight: 500;
    border-radius: 0.5rem;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.section-divider.left {
    margin: 0 0 1.5rem 0;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

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

.logo img {
    height: 4.5rem;
    width: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.desktop-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    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(--navy);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--navy);
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e3a5f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating.crossword {
    top: 15%;
    left: 5%;
}

.floating.sudoku {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

.floating.letters {
    bottom: 20%;
    left: 8%;
    animation-delay: 1.5s;
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--navy);
}

.grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.cell {
    width: 2rem;
    height: 2rem;
    border: 2px solid transparent;
}

.cell.filled {
    border-color: var(--navy);
    background: rgba(30, 58, 95, 0.1);
}

.sudoku-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--navy);
    padding: 2px;
}

.s-cell {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--navy);
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--gold);
    display: block;
}

.hero > .hero-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

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

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--navy);
    animation: bounce 2s infinite;
}

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

/* Games Section */
.games {
    padding: 6rem 0;
    background: var(--white);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.game-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.game-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(201, 162, 39, 0.1), transparent);
    pointer-events: none;
}

.game-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.game-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--navy); }
.game-icon.amber { background: rgba(245, 158, 11, 0.15); color: var(--navy); }
.game-icon.emerald { background: rgba(16, 185, 129, 0.15); color: var(--navy); }
.game-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--navy); }
.game-icon.rose { background: rgba(244, 63, 94, 0.15); color: var(--navy); }
.game-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--navy); }
.game-icon.orange { background: rgba(249, 115, 22, 0.15); color: var(--navy); }
.game-icon.indigo { background: rgba(99, 102, 241, 0.15); color: var(--navy); }

.game-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.game-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.games-cta {
    text-align: center;
    margin-top: 3rem;
}

.games-cta p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-content h2 .highlight {
    color: var(--gold);
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content strong {
    color: var(--white);
}

.features {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.stat-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label-large {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: var(--cream);
}

.countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.country-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s ease;
}

.country-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.flag {
    font-size: 1.25rem;
}

.map-container {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.map-header svg {
    color: var(--gold);
}

.map-header h3 {
    font-size: 1.5rem;
    color: var(--navy);
}

.map {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map svg {
    max-width: 300px;
    max-height: 100%;
}

.map-label {
    position: absolute;
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.testimonials {
    display: grid;
    gap: 1.5rem;
}

.testimonial {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(201, 162, 39, 0.3);
}

.testimonial p {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--cream);
    border-radius: 1rem;
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

.info-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold);
}

.info-item p {
    color: var(--gray-600);
}

.hours-card {
    background: var(--navy);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
}

.hours-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hours-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.hours-card .note {
    color: var(--gold);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #22c55e;
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.footer-contact span {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom svg {
    color: var(--gold);
    display: inline-block;
    vertical-align: middle;
}

/* Responsive */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .desktop-cta {
        display: inline-flex;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos del botón flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distancia desde abajo */
    right: 20px;  /* Distancia desde la derecha */
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3); /* Sombra suave */
    z-index: 1000; /* Para que esté por encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc57;
    color: #fff;
}

/* Tamaño del icono SVG */
.whatsapp-icon {
    width: 35px;
    height: 35px;
}
/* =========================================
   Firma de la Agencia - Dominio Sur
   ========================================= */

/* =========================================
   Firma de la Agencia - Dominio Sur
   ========================================= */

/* Forzar centrado absoluto del footer inferior */
.footer-bottom .container.footer-centrado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-bottom .container.footer-centrado {
        flex-direction: column; 
    }
}

.firma-agencia {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.firma-agencia a {
    text-decoration: none;
    margin-left: 0.25rem;
    transition: opacity 0.3s ease;
}

.firma-agencia a:hover {
    opacity: 0.8;
}

/* Efecto Degradé para Dominio Sur */
.gradiente-dominio-sur {
    background: linear-gradient(to right, #00e5ff, #b951ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600; /* Le damos un poco más de grosor para que el degradé luzca más */
    letter-spacing: 0.3px;
}


