/* ==========================================
   HERO - Diseño Limpio con Slider
   ========================================== */

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--azul-oscuro);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__social {
    display: flex;
    gap: var(--gap-md);
}

.top-bar__social a {
    color: var(--blanco);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar__social a:hover {
    color: var(--blanco);
    background: var(--azul-medio);
    transform: translateY(-2px);
}

.top-bar__contact {
    display: flex;
    gap: var(--gap-xl);
}

.top-bar__contact span {
    color: var(--blanco);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar__contact i {
    color: var(--azul-medio);
}

/* ===== HEADER ADJUSTMENT ===== */
.header {
    top: 50px !important;
}

/* ==========================================
   HERO MAIN - DISEÑO CON SLIDER Y DIVISIÓN DIAGONAL
   ========================================== */
.hero-main {
    margin-top: 0;
    height: calc(100vh - var(--header-h) - 50px);
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

/* Cada slide completo */
.hero-main__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: visible;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-main__slide.active {
    opacity: 1;
    z-index: 2;
}

/* Animaciones para el contenido */
.hero-main__slide .hero-main__label,
.hero-main__slide .hero-main__title,
.hero-main__slide .hero-main__stats,
.hero-main__slide .hero-main__description,
.hero-main__slide .hero-main__buttons {
    opacity: 0;
    transform: translateY(20px);
}

.hero-main__slide.active .hero-main__label {
    animation: slideUp 0.6s ease-out 0.3s forwards;
}

.hero-main__slide.active .hero-main__title {
    animation: slideUp 0.6s ease-out 0.5s forwards;
}

.hero-main__slide.active .hero-main__stats {
    animation: slideUp 0.6s ease-out 0.7s forwards;
}

.hero-main__slide.active .hero-main__description {
    animation: slideUp 0.6s ease-out 0.9s forwards;
}

.hero-main__slide.active .hero-main__buttons {
    animation: slideUp 0.6s ease-out 1.1s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenido del slide (lado izquierdo) */
.hero-main__content {
    width: 45%;
    background: #004A98;
    padding: 4rem 4rem 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--blanco);
    position: relative;
    z-index: 3;
}

/* Efecto diagonal */
.hero-main__content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 160px;
    height: 100%;
    background: inherit;
    transform: skewX(-8deg);
    z-index: -1;
}

.hero-main__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--blanco);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 55px;
}

.hero-main__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--blanco);
}

.hero-main__title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main__title--large {
    font-size: 5rem;
    display: block;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.95;
    margin: 0.1rem 0;
}

.hero-main__title--gold {
    color: var(--blanco);
    display: block;
    font-weight: 400;
    font-size: 2.5rem;
}

/* Estadísticas */
.hero-main__stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-main__stat {
    display: flex;
    flex-direction: column;
}

.hero-main__stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blanco);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-main__stat-number sup {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blanco);
}

.hero-main__stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Descripción */
.hero-main__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 100%;
    font-weight: 300;
}

/* Botones */
.hero-main__buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.hero-main__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-main__btn--primary {
    background: var(--oro);
    color: var(--azul-oscuro);
    border: 2px solid var(--oro);
}

.hero-main__btn--primary:hover {
    background: #b8912e;
    border-color: #b8912e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 163, 95, 0.4);
}

.hero-main__btn--outline {
    background: transparent;
    color: var(--blanco);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-main__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blanco);
}

/* Imagen del slide (lado derecho) */
.hero-main__image {
    width: 55%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-main__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Controles del slider */
.hero-main__controls {
    display: none;
}

.hero-main__dot {
    display: none;
}

/* WhatsApp flotante */
.hero-main__whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-main__whatsapp::before,
.hero-main__whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: wpp-wave 2s ease-out infinite;
    z-index: -1;
}

.hero-main__whatsapp::after {
    animation-delay: 0.7s;
}

.hero-main__whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Laptops y tablets grandes (1024px - 1280px) */
@media (max-width: 1280px) {
    .hero-main {
        min-height: 600px;
    }
    
    .hero-main__content {
        padding: 3rem 3rem 3rem 5%;
    }
    
    .hero-main__title {
        font-size: 2.2rem;
    }
    
    .hero-main__title--large {
        font-size: 3.8rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-main {
        min-height: 550px;
    }
    
    .hero-main__content {
        width: 48%;
        padding: 2.5rem 2.5rem 2.5rem 4%;
    }
    
    .hero-main__image {
        width: 52%;
    }
    
    .hero-main__title {
        font-size: 2rem;
    }
    
    .hero-main__title--large {
        font-size: 3.2rem;
    }
    
    .hero-main__description {
        font-size: 0.95rem;
    }
    
    .hero-main__btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Móviles grandes y tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        top: 0 !important;
    }

    .top-bar__contact {
        display: none;
    }
    
    .hero-main {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .hero-main__slide {
        flex-direction: column;
        position: relative;
        height: auto;
        display: none;
    }
    
    .hero-main__slide.active {
        display: flex;
    }
    
    .hero-main__content {
        width: 100%;
        padding: 2.5rem 2rem;
        transform: none;
    }
    
    .hero-main__content::after {
        display: none;
    }
    
    .hero-main__image {
        width: 100%;
        height: 350px;
    }
    
    .hero-main__label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-main__title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-main__title--large {
        font-size: 2.5rem;
    }
    
    .hero-main__description {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-main__buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-main__btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-main__controls {
        display: none;
    }
    
    .hero-main__whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
    }
}

/* Móviles pequeños (320px - 480px) */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar__social {
        gap: 0.5rem;
    }
    
    .top-bar__social a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .hero-main {
        overflow: visible;
    }
    
    .hero-main__slide {
        height: auto;
        position: relative;
        display: none;
    }
    
    .hero-main__slide.active {
        display: flex;
    }
    
    .hero-main__content {
        padding: 2rem 1.25rem;
    }
    
    .hero-main__label {
        font-size: 0.65rem;
        padding-left: 45px;
        margin-bottom: 0.5rem;
    }
    
    .hero-main__label::before {
        width: 35px;
    }
    
    .hero-main__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-main__title--large {
        font-size: 2rem;
    }
    
    .hero-main__description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-main__image {
        height: 280px;
    }
    
    .hero-main__btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-main__whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        left: 15px;
    }
}

/* ===== ESTILOS ANTIGUOS (MANTENER PARA COMPATIBILIDAD) ===== */

.hero__nav-btn:hover {
    border-color: var(--azul-oscuro);
    color: var(--azul-oscuro);
    background: rgba(0, 74, 152, 0.05);
}

/* ===== SLIDER ===== */
.hero__slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-h) - 50px);
    min-height: 600px;
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.hero__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

/* ===== CONTENIDO DEL SLIDE ===== */
.hero__content {
    padding: var(--gap-3xl);
    padding-left: 12%;
    position: relative;
    z-index: 5;
}

/* Línea decorativa azul */
.hero__line {
    width: 50px;
    height: 4px;
    background: var(--azul-oscuro);
    margin-bottom: var(--gap-xl);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.hero__slide.active .hero__line {
    animation: lineGrow 0.6s ease forwards 0.2s;
}

.hero__slide.exit .hero__line {
    animation: lineOut 0.4s ease forwards;
}

@keyframes lineGrow {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes lineOut {
    to {
        opacity: 0;
        transform: scaleX(0);
    }
}

/* Título */
.hero__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--gris-oscuro);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--gap-lg);
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(40px);
}

.hero__slide.active .hero__title {
    animation: fadeSlideUp 0.8s ease forwards 0.3s;
}

.hero__slide.exit .hero__title {
    animation: fadeSlideOut 0.5s ease forwards;
}

.hero__title--highlight {
    color: var(--azul-oscuro);
    font-weight: 600;
    font-style: normal;
}

/* Texto */
.hero__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-medio);
    margin-bottom: var(--gap-xl);
    max-width: 450px;
    opacity: 0;
    transform: translateY(30px);
}

.hero__slide.active .hero__text {
    animation: fadeSlideUp 0.8s ease forwards 0.5s;
}

.hero__slide.exit .hero__text {
    animation: fadeSlideOut 0.4s ease forwards 0.1s;
}

/* Botón CTA */
.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--azul-oscuro);
    color: var(--blanco);
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 152, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero__slide.active .hero__cta {
    animation: fadeSlideUp 0.8s ease forwards 0.7s;
}

.hero__slide.exit .hero__cta {
    animation: fadeSlideOut 0.3s ease forwards 0.2s;
}

.hero__cta:hover {
    background: var(--azul-medio);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 152, 0.4);
}

/* ===== IMAGEN DEL SLIDE ===== */
.hero__image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Gradiente para fundir la imagen con el fondo */
.hero__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(248, 249, 250, 1) 0%,
        rgba(248, 249, 250, 0.8) 30%,
        rgba(248, 249, 250, 0.4) 60%,
        rgba(248, 249, 250, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(248, 249, 250, 0.3) 0%,
        rgba(248, 249, 250, 0) 20%,
        rgba(248, 249, 250, 0) 80%,
        rgba(248, 249, 250, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: translateX(50px);
}

.hero__slide.active .hero__image img {
    animation: imageSlideIn 1s ease forwards 0.2s;
}

.hero__slide.exit .hero__image img {
    animation: imageSlideOut 0.6s ease forwards;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(1.02);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes imageSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50px) scale(0.98);
    }
}

/* Animaciones generales */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ===== INDICADORES ===== */
.hero__indicators {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--gris-medio);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero__indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--azul-oscuro);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero__indicator.active {
    border-color: var(--azul-oscuro);
}

.hero__indicator.active::before {
    width: 6px;
    height: 6px;
}

.hero__indicator:hover {
    background: var(--gris-medio);
}

/* ===== FEATURES SECTION - NUEVO DISEÑO ===== */
.features {
    background: var(--blanco);
    padding: var(--gap-3xl) 0;
    position: relative;
    z-index: 10;
}

.features__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-xl);
}

.features__card {
    background: var(--blanco);
    border-radius: 16px;
    padding: var(--gap-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid var(--gris-claro);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.features__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 74, 152, 0.15);
}

.features__icon-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    margin-bottom: var(--gap-lg);
}

.features__icon {
    width: 70px;
    height: 70px;
    background: var(--azul-oscuro);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.features__card:hover .features__icon {
    transform: scale(1.05);
    background: var(--azul-medio);
}

.features__icon i {
    font-size: 1.8rem;
    color: var(--blanco);
}

.features__number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 74, 152, 0.1);
    line-height: 1;
}

.features__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gris-oscuro);
    margin-bottom: var(--gap-sm);
    font-weight: 700;
}

.features__text {
    font-size: 0.95rem;
    color: var(--gris-medio);
    line-height: 1.7;
    margin-bottom: var(--gap-lg);
    flex-grow: 1;
}

.features__line {
    height: 4px;
    background: linear-gradient(90deg, var(--azul-oscuro), var(--azul-medio));
    border-radius: 2px;
    width: 60px;
    transition: all 0.3s ease;
}

.features__card:hover .features__line {
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--blanco);
    padding: var(--gap-3xl) 0;
    position: relative;
}

.about__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-3xl);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 74, 152, 0.2);
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--azul-oscuro);
    color: var(--blanco);
    padding: var(--gap-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 74, 152, 0.3);
    min-width: 130px;
}

.about__experience-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: var(--gap-xs);
    opacity: 0.9;
}

.about__content {
    padding-left: var(--gap-xl);
}

.about__tag {
    display: inline-block;
    color: var(--azul-medio);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--gap-md);
}

.about__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gris-oscuro);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--gap-md);
}

.about__subtitle {
    font-size: 1.1rem;
    color: var(--azul-oscuro);
    font-weight: 600;
    margin-bottom: var(--gap-lg);
}

.about__list {
    list-style: none;
    margin-bottom: var(--gap-lg);
}

.about__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
    font-size: 1rem;
    color: var(--gris-medio);
}

.about__list li i {
    color: var(--oro);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about__description {
    font-size: 0.95rem;
    color: var(--gris-medio);
    line-height: 1.7;
    margin-bottom: var(--gap-xl);
}

.about__actions {
    display: flex;
    align-items: center;
    gap: var(--gap-xl);
    flex-wrap: wrap;
}

.about__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
    padding: 1rem 2rem;
    background: var(--oro);
    color: var(--azul-oscuro);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 163, 95, 0.3);
}

.about__btn:hover {
    background: #b8912e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 163, 95, 0.45);
}

.about__phone {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
}

.about__phone-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 74, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about__phone-icon i {
    color: var(--azul-oscuro);
    font-size: 1.2rem;
}

.about__phone:hover .about__phone-icon {
    background: var(--azul-oscuro);
}

.about__phone:hover .about__phone-icon i {
    color: var(--blanco);
}

.about__phone-info {
    display: flex;
    flex-direction: column;
}

.about__phone-number {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gris-oscuro);
}

.about__phone-label {
    font-size: 0.85rem;
    color: var(--gris-medio);
}

/* About con fondo gris */
.about--gray {
    background: var(--gris-ultra-claro);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .hero__slide {
        grid-template-columns: 1fr;
    }
    
    .hero__content {
        padding: var(--gap-2xl);
        padding-left: 15%;
        text-align: left;
        position: relative;
        z-index: 10;
    }
    
    .hero__image {
        position: absolute;
        inset: 0;
        z-index: 1;
    }
    
    .hero__image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.7) 50%, transparent 100%);
        z-index: 2;
    }
    
    .hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero__nav-vertical {
        left: 2%;
    }
    
    .features__container {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }
    
    .about__image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about__content {
        padding-left: 0;
        text-align: center;
    }
    
    .about__list li {
        justify-content: center;
    }
    
    .about__actions {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .top-bar__contact {
        display: none;
    }
    
    .hero {
        margin-top: var(--header-h);
    }
    
    .hero__slider {
        min-height: 550px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .hero__content {
        padding: var(--gap-xl);
        padding-left: 10%;
    }
    
    .hero__nav-vertical {
        top: auto;
        bottom: 100px;
        transform: none;
        flex-direction: row;
    }
    
    .hero__nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero__indicators {
        bottom: 30px;
        left: 10%;
    }
    
    .hero__indicator {
        width: 30px;
    }
    
    .features__card {
        text-align: center;
    }
    
    .features__icon-wrapper {
        justify-content: center;
    }
    
    .features__line {
        margin: 0 auto;
    }
    
    .about__experience {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }
    
    .about__actions {
        flex-direction: column;
        gap: var(--gap-lg);
    }
    
    .about__phone {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__content {
        padding: var(--gap-lg);
    }
    
    .hero__cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero__nav-vertical {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features__number {
        font-size: 2.5rem;
    }
    
    .about__title {
        font-size: 1.8rem;
    }
    
    .about__experience-number {
        font-size: 2.5rem;
    }
}
