﻿/* Banner dividido */
.banner_dras {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh; /* solo desktop */
    background: linear-gradient(to bottom, #f8f6f2, #fdfcfb);
}

/* Imagen derecha como background */
.banner-img {
    background: url('../../images/docs.jpg') center center no-repeat;
    background-size: cover;
    min-height: 400px; /* asegura altura mínima */
    flex: 1;
}

    /* Overlay para dar opacidad */
    .banner-img .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
    }

/* Texto */
.banner_dras .col-md-6 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== Ajustes Responsive ===== */
@media (max-width: 767px) {
    .banner_dras {
        flex-direction: column;
        min-height: auto; /* 👈 quita el 100vh */
    }

    .banner-img {
        height: 40vh; /* ocupa solo parte de pantalla */
        min-height: 250px;
    }

    .banner_dras .col-md-6 {
        padding: 2rem 1rem;
        text-align: center;
        align-items: center;
    }
}


    /* Logo */
    .banner_dras img[alt="Dras. Molina"] {
        max-height: 40px;
    }

    /* Títulos */
    .banner_dras h2 {
        font-size: 1.8rem;
        color: #5a3c3c;
    }

    .banner_dras h3 {
        font-size: 1.6rem;
        color: #a36f6f;
    }

    /* Botones superiores */
    .banner_dras .btn {
        border: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .banner_dras .btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

    /* Imagen doctora */
    .banner_dras img[alt="Dras Molina"] {
        max-height: 420px;
        border-radius: 12px;
    }

    /* ======== SECCIÓN INFERIOR ======== */
    .banner_dras .row.text-center .col-md-6 {
        border-radius: 8px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .banner_dras .row.text-center h4 {
        font-size: 1.3rem;
        color: #444;
    }

    .banner_dras .row.text-center p {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #555;
    }

    /* Botones inferiores */
    .banner_dras .row.text-center .btn {
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .banner_dras .row.text-center .btn:hover {
            transform: scale(1.05);
        }

.banner_dras .btn {
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 255px; /* ancho fijo igual para todos */
    text-align: center; /* centra el texto */
}


.footer {
    background-color: #cfa4a4; /* rosado como en la imagen */
    color: #fff;
    font-size: 0.9rem;
}

    .footer a.social {
        display: inline-block;
        margin: 0 8px;
        font-size: 1.3rem;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        line-height: 34px;
        text-align: center;
        transition: all 0.3s ease;
    }

        .footer a.social:hover {
            background-color: #fff;
            color: #cfa4a4;
        }
