/* Paleta de Colores:
  - Fondo Oscuro: #222831
  - Gris Secundario: #393E46
  - Turquesa Principal (Acento): #00ADB5
  - Fondo Claro / Texto Oscuro: #EEEEEE
*/

:root {
    --dark-bg: #222831;
    --secondary-gray: #393E46;
    --primary-accent: #00ADB5;
    --light-bg: #EEEEEE;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--secondary-gray);
}

/* ----- Barras Superiores ----- */
.info-bar {
    background-color: #f8f9fa;
    color: #6c757d;
}

.navbar {
    background-color: var(--dark-bg) !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-weight: 700;
}

.navbar .nav-link.btn-primary {
    background-color: var(--primary-accent);
    border: none;
    transition: all 0.3s ease;
}

.navbar .nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 173, 181, 0.4);
    filter: brightness(1.1);
}

/* ----- Sección Principal (Hero) ----- */
.hero {
    position: relative;
    background: url('../img/hero-background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 40, 49, 0.6); /* Overlay oscuro */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .btn-primary {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    transform: scale(1.05);
}

/* ----- Secciones Generales ----- */
.section-title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--dark-bg);
}

.section-bg {
    background-color: #ffffff; /* Blanco para destacar sobre el fondo gris claro */
}

/* ----- Tarjetas ----- */
.product-card, .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* ----- Acordeón (FAQ) ----- */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 173, 181, 0.1);
    color: var(--dark-bg);
}

/* ----- Botón de WhatsApp ----- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ----- Footer ----- */
footer {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

