/* =========================================
   ESTILOS DE HONOR - OPAL HANDS (CON LOGO A LA DERECHA)
   ========================================= */

.brand-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B8FB1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -5px;
}

.brand-divider {
    height: 4px;
    background: linear-gradient(to right, #1CE8FE, #0B8FB1, #1CE8FE);
    width: 100%;
}

/* 1. Configuración del Hero Section Quirúrgica */
.hero-section {
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 5px solid #1CE8FE;
    /* MULTI-BACKGROUND: 
       Capa 1: Degradado sólido a la izquierda para el texto.
       Capa 2: Tu imagen con el logo cargada a la DERECHA. */
    background: linear-gradient(to right, rgba(11, 143, 177, 0.95) 30%, rgba(11, 143, 177, 0.5) 60%, transparent 100%), url('/images/hero-opal-hands-tampa.webp');
    background-size: cover;
    background-position: center right; /* Empuja el detalle de la imagen a la derecha */
    background-repeat: no-repeat;
}

/* 2. Colores de Marca y Tipografía */
.text-cyan {
    color: #1CE8FE !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-section p.lead {
    color: #ffffff;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* 3. Botones con "Feeling" Profesional */
.btn-cyan {
    background-color: #1CE8FE;
    color: #0B8FB1 !important;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

    .btn-cyan:hover {
        background-color: #0B8FB1;
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 35px;
    border-width: 2px;
    font-weight: bold;
}

/* 4. Sección de Bienvenida y Servicios */
.welcome-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.welcome-title {
    color: #0B8FB1;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

    .welcome-title::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 3px;
        background: #1CE8FE;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

/* --- TARJETAS DE SERVICIO (THE THREE MUSKETEERS) --- */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    border-top: 4px solid transparent !important;
}

    .service-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid #1CE8FE !important;
        box-shadow: 0 15px 30px rgba(11, 143, 177, 0.1) !important;
    }

.icon-box i {
    color: #1CE8FE;
}


/* Asegura que el cuerpo de la página empuje el footer al final */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Limpia cualquier posición fija que pueda tener el footer por defecto */
.footer {
    position: relative !important;
    width: 100%;
    bottom: 0;
}
/* BOTÓN DE APLICACIÓN ULTRA LLAMATIVO */
.btn-apply-hero {
    background: #1CE8FE; /* Tu cian brillante */
    color: #0B8FB1 !important;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(28, 232, 254, 0.4);
}

    .btn-apply-hero:hover {
        background: #ffffff;
        color: #0B8FB1 !important;
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(28, 232, 254, 0.6);
    }

/* Animación de pulso suave para llamar la atención sin molestar */
.animate__pulse {
    animation-duration: 2s;
}

/* DISEÑO DE TARJETAS ABOUT US */
.custom-about-card {
    transition: transform 0.3s ease;
    background: #ffffff;
    border-radius: 20px !important;
}

    .custom-about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(11, 143, 177, 0.1) !important;
    }

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1CE8FE 0%, #0B8FB1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(28, 232, 254, 0.3);
}