/* -----------------------------------------------------------
   style_optica.css - Óptica Oftálmica Laser Hawk
----------------------------------------------------------- */

/* 1. FONDO CON EFECTO PERLADO (Para que luzca la foto abajo) */
        body {
            /* Subimos al 90% la opacidad del blanco perlado (f8f9fa) */
            background-image: linear-gradient(rgba(248, 249, 250, 0.90), rgba(248, 249, 250, 0.90)), url('images/fondo.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            font-family: 'Roboto Condensed', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* 2. TOP BAR (Info, Logo, Redes) */
        .top-header {
            padding: 25px 0;
            background: transparent;
        }
        
        .top-header p {
            font-family: 'Raleway', sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            font-weight: 500;
        }

        .top-header i {
            color: #000;
            width: 20px;
            text-align: center;
        }

        .face-header a {
            color: #222;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .face-header a:hover {
            color: #0264d2;
        }

        /* 3. NAVBAR GRIS CLARITO (Con separación marcada) */
        .navbar-hawk {
            background-color: #f0f0f0 !important; /* Gris humo clarito para separar del perlado */
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            padding: 0 !important;
        }

        .navbar-hawk .nav-link {
            color: #555 !important; /* Gris oscuro para el texto */
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 15px 25px !important;
            transition: all 0.3s ease;
        }

        /* Hover de Gris a Negro absoluto y fondo más marcado */
        .navbar-hawk .nav-link:hover,
        .navbar-hawk .nav-item.active .nav-link {
            color: #000000 !important;
            background-color: #e2e2e2; /* Gris de destaque */
            text-decoration: none;
        }

        /* Fix para evitar bullets si el CSS viejo sigue cargado */
        .navbar-nav { list-style: none !important; }
 
/* ==========================================
   2. SECCIONES DE LA ÓPTICA OFTÁLMICA
   ========================================== */

.titulo-seccion-o {
    font-family: 'Raleway', sans-serif;
    color: #004a99; /* Azul del logo Zeiss/Hawk */
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.subtitulo-seccion-o {
    font-family: 'Raleway', sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Componentes Genéricos */
.centrado {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 6px;
    margin-top: 100px;
    z-index: 10;
}

@media (min-width: 1200px) {
    .centrado {
        margin-top: 10px;
    }
}

/* Tarjetas de Producto (Plenitud, Multifocal, etc) */
.card-producto-o {
    border: none;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.card-producto-o img {
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-producto-o h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #004a99;
    margin-top: 15px;
    font-size: 1.8rem;
}

.card-producto-o p {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    text-transform: uppercase;
}

/* Botones "Más Información" */
.btn-info-o {
    background-color: #0066cc;
    color: #fff;
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    padding: 8px 25px;
    font-size: 0.8rem;
    border: none;
}

.btn-info-o:hover {
    background-color: #004a99;
    color: #fff;
    text-decoration: none;
}

/* ==========================================
   3. BLOQUES DE IMAGEN MITAD Y ANTIPARRAS
   ========================================== */

/* Contenedor Maestro de la sección Mitad */
.seccion-premium {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.caja-foto {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px; /* Un toque sutil de redondeo */
}

.caja-foto img {
    width: 100%;
    height: auto;
    display: block;
}

/* Títulos Arriba a la Izquierda */
.overlay-titulo {
    position: absolute;
    top: 25px; /* Separación del borde superior */
    left: 25px; /* Separación del borde izquierdo */
    z-index: 10;
}

.overlay-titulo h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* Botones Abajo a la Derecha */
.overlay-boton {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

/* Colores de texto específicos */
.txt-black { color: #000000; }
.txt-white { color: #ffffff; }

/* Botón estilo Zeiss/LaserHawk */
.btn-laser-hawk {
    background-color: #0066cc;
    color: #fff !important;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    border-radius: 2px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
/* ==========================================
   5. ARMAZONES Y TIEMPO LIBRE
   ========================================== */
#mitad .cajab {
    position: relative;
    background: #fff;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    text-align: left;
    height: 100%; /* Para que queden parejas */
}

#mitad .cajab img {
    width: 100%;
    height: auto;
    display: block;
}

#mitad .cajab h4 {
    padding: 20px 20px 5px 20px;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

#mitad .cajab p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 15px;
}

#mitad .cajab .btn-info-o {
    margin: 0 0 20px 20px;
    display: inline-block;
}
/* ------------------------------------------
   NUEVO BANNER ANTIPARRAS (Diseño image_9.png)
   ------------------------------------------ */
.banner-antiparras-premium {
    /* Usamos la imagen que pidió el usuario */
    background-image: url('../images/aqulentes-home.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 400px; /* Altura generosa para desktop */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* Los DIVs de abajo se encargan del centrado */
}

/* Ajuste de altura para móviles */
@media (max-width: 767px) {
    .banner-antiparras-premium {
        min-height: 300px;
    }
}

/* Estilo para los h3 de este banner */
.banner-antiparras-premium h3 {
    font-size: 35px;
    margin: 0;
    line-height: 1.1;
    font-family: 'Raleway', sans-serif;
}

/* Ajuste de tamaño de fuente para móviles */
@media (max-width: 767px) {
    .banner-antiparras-premium h3 {
        font-size: 24px;
    }
}

/* Botón con contorno blanco (outline) */
.btn-outline-white {
    color: #fff !important;
    border: 2px solid #fff;
    background-color: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: none; /* Como en image_9.png */
}

.btn-outline-white:hover {
    color: #333 !important;
    background-color: #fff;
    text-decoration: none;
}
/* ==========================================
   4. FOOTER ESTILOS
   ========================================== */

footer {
    background-color: #eee;
    color: #000;
    padding-top: 40px;
}

footer h4 {
    font-family: 'Raleway', sans-serif;
    color: #00046e;
    font-size: 23px;
}

footer ul {
    padding: 0 25px;
    margin: 0;
    list-style-type: none;
}

footer li {
    padding: 5px 0;
    border-bottom: 1px solid #000;
}

footer a {
    color: #000;
    transition: color 0.3s;
}

footer a:hover {
    color: #F76100;
    text-decoration: none;
}

#copyright {
    text-align: center;
    padding: 10px;
    color: #545454;
    border-top: 3px solid #fb510f;
    margin-top: 30px;
    background-color: #000;
}