:root {
    --primary-color: #16A78D;
    --secondary-color: #0A302A;
    --accent-color: #ffc107;
    --dark-bg: #1e293b;
    --light-gray: #f8f9fa;
    --border-color: #e2e8f0;
    --text-main: #334155;
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 80px;
    --Bold: 'Bold', sans-serif;
    --Regular: 'Regular', sans-serif;
    --Medium: 'Medium', sans-serif;
    --top-bar-height: 50px;
    --nav-height: 80px;
    --whatsapp-green: #25D366;
    --sombra: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Sombra ligeramente más definida */
    --sombra-modal: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radio-borde: 8px;
    --color-texto-suave: #636e72;
    --color-borde: #e0e0e0;

    --froc-blue: #0B453A;
    --froc-accent: #16A78D;
    --froc-dark: #2c3e50;
    --froc-light: #f4f7f6;
    --froc-gray: #e9ecef;
    --froc-border: #dee2e6;
    --froc-text-muted: #6c757d;
    --color-blanco: #ffffff;

}



body {
    font-family: var(--Regular);
    color: var(--text-main);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-header);
    font-weight: 700;
}

h5 {
    font-family: var(--Medium);
}

p {
    font-family: var(--Regular);
}

.movil-width {
    width: 14%;
}

.desktop-width {
    width: 86%;

}

/* Top Bar */
.top-bar {
    width: 100%;
    min-height: 50px;
    background-color: #0B453A;
    color: white;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    padding: 5px 10px;
}

/* Contenedor interno */
.top-bar-content {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    /* 🔥 Permite que baje en móvil */
    gap: 4rem;
    /* Espaciado adaptable */
    text-align: center;
}

/* Links */
.top-bar a {
    color: white;
    text-decoration: none;
    transition: 0.2s;

}

.top-bar a:hover {
    color: var(--primary-color);
}

/* Animación con keyframe llamada "latidos" */
@keyframes latidos {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.corazon {
    display: inline-block;
    /* 🔥 importante */
    animation: latidos 2s infinite ease-in-out;
    font-size: 13px;
    /* font-weight: 600; */
}


/* Ajustes móviles */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* .top-bar-content {
        gap: 0.8rem;
        font-size: 12px;
    } */
    .movil-width {
        width: 0;
    }

    .desktop-width {
        width: 100%;

    }
}