/* DOCTOR PAGE SPECIFIC STYLES */
.doctor-page {
    background-color: var(--white);
}

/* Hero Section */
.doctor-hero {
    position: relative;
    min-height: 60vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(92, 107, 115, 0.9) 0%, rgba(26, 52, 73, 0.95) 100%),
                url('/img/quenet-torrent-1024x400.webp') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.doctor-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 1;
}

.doctor-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.doctor-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* Profile Section */
.doctor-profile.section-padding {
    padding: 8rem 0;
    background-color: var(--lighter-gray);
}

.doctor-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.doctor-photo-large {
    position: relative;
}

.doctor-photo-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.doctor-main-content:hover .doctor-photo-large img {
    transform: scale(1.02);
}

.doctor-info h2 {
    font-size: 2.8rem;
    color: var(--dark-teal);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.doctor-specialty-large {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-teal);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.doctor-biography {
    max-width: 900px;
    margin: 0 auto;
}

.doctor-biography h3 {
    font-size: 1.8rem;
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
}

.experience-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    background: var(--primary-green);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.doctor-contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-light) 100%);
    color: var(--white);
}

.doctor-contact h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.doctor-contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-green);
    transition: color var(--transition);
}

.contact-details a:hover {
    color: var(--white);
}

.doctor-contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.doctor-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.doctor-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-teal);
}

/* Responsive */
@media (max-width: 1024px) {
    .doctor-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .doctor-photo-large img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .doctor-hero {
        min-height: 50vh;
    }
    
    .doctor-profile.section-padding,
    .doctor-contact {
        padding: 4rem 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .doctor-contact-form {
        padding: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-year {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .doctor-title {
        font-size: 2.2rem;
    }
    
    .doctor-highlights {
        grid-template-columns: 1fr;
    }
}
/* DOCTOR QUENET - Nuevas Secciones */
.doctor-knowme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.knowme-content {
    max-width: 900px;
    margin: 0 auto;
}

.knowme-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.knowme-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.knowme-text p:last-child {
    margin-bottom: 0;
}

/* Información del Doctor */
.doctor-information {
    padding: 100px 0;
    background: #fff;
}

.information-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card, .contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.info-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #3498db;
}

.info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-item li::before {
    content: "▸";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-item li strong {
    color: #2c3e50;
}

/* Contacto Card */
.contact-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
}

.contact-details-large {
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item strong {
    font-size: 1.1rem;
    color: #2c3e50;
    min-width: 80px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2980b9;
}

.location-info {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #27ae60;
}

.location-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #27ae60;
    text-align: center;
}

.publications-link {
    text-align: center;
}

.publications-link .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.publications-link .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.4);
}

.publications-link .btn-secondary span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .information-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctor-knowme {
        padding: 60px 0;
    }
    
    .knowme-text h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .info-card, .contact-card {
        padding: 30px 25px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .doctor-information {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .knowme-text h3 {
        font-size: 1.7rem;
    }
    
    .info-item h4 {
        font-size: 1.2rem;
    }
}
