/* ============================
   FUENTES Y RESET
============================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #0d3b66;
}

/* ============================
   SECCIÓN LUIS MARTÍ MORENO
============================ */


/* Tarjeta Dr. Luis */
.dr-luis-marti { 
    background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: calc(100% - 80px); /* 40 px de margen a cada lado */
    max-width: 1200px;
    box-sizing: border-box;
    margin: 140px auto 50px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.container-dr-luis {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

/* FOTO DEL DR. */
.photo-dr {
    flex: 0 0 280px;
    text-align: center;
}

.dr-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* INFO DEL DR. */
.info-dr {
    flex: 1 1 550px;
    min-width: 300px;
}

.info-dr h2 {
    font-size: 42px;
    color: #0d3b66;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-dr h4 {
    color: #0d3b66;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

/* PARRAFOS DESTACADOS */
.info-dr p.highlight {
    font-size: 1.15rem;
    line-height: 1.7em;
    color: #0d3b66;
    margin-bottom: 20px;
    font-weight: 500;
}

/* DETALLES DEL DR. CON ICONOS */
.dr-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    color: #0d3b66;
    font-size: 1.3rem;
    margin-top: 3px;
}

/* BOTÓN CTA */
.cta-dr {
    margin-top: 25px;
}

.cta-dr .btn-primary {
    background-color: #0d3b66;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cta-dr .btn-primary:hover {
    background-color: #0d3b66;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ============================
   MEDIA QUERIES
============================ */
@media (max-width: 1200px) {
    .dr-luis-marti {
        padding: 30px 20px;
    }
}

@media (max-width: 900px) {
    .container-dr-luis {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .photo-dr, .dr-photo {
        width: 220px;
        height: 220px;
    }

    .info-dr h2 {
        font-size: 2rem;
    }

    .info-dr h4 {
        font-size: 1.1rem;
    }

    .info-dr p.highlight, .detail-item p {
        font-size: 1rem;
    }

    .cta-dr .btn-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .dr-luis-marti {
        margin: 80px 10px 50px 10px;
        padding: 20px 15px;
    }

    .photo-dr, .dr-photo {
        width: 180px;
        height: 180px;
    }

    .info-dr h2 {
        font-size: 1.5rem;
    }

    .info-dr h4 {
        font-size: 1rem;
    }

    .info-dr p.highlight, .detail-item p {
        font-size: 0.95rem;
    }

    .cta-dr .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

