/* ============================================
   PÁGINA AGUSTÍN SÁNCHEZ PÉREZ - SEMINARIO DIOCESANO DE CANARIAS
   ============================================ */

:root {
    --asp-primary: #3BBCD9;
    --asp-secondary: #F2B705;
    --asp-red: #F24141;
    --asp-text: #000000;
    --asp-text-light: #555555;
    --asp-bg: #ffffff;
    --asp-bg-alt: #f8f9fa;
    --asp-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --asp-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --asp-radius: 12px;
    --asp-transition: all 0.3s ease;
    --asp-font-heading: 'colusfont', serif;
    --asp-font-body: 'Montserrat', sans-serif;
}

.asp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HERO */
.asp-hero {
    position: relative;
    background: linear-gradient(135deg, #3BBCD9 0%, #2473b6 50%, #1a5a8a 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.asp-hero-content {
    padding: 50px 20px;
    max-width: 800px;
}

.asp-hero h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.asp-hero-divider {
    width: 80px;
    height: 3px;
    background-color: var(--asp-secondary);
    margin: 20px auto;
    border: none;
}

.asp-hero-subtitle {
    font-family: var(--asp-font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 1px;
}

/* PERFIL */
.asp-profile-section {
    background-color: var(--asp-bg);
    padding: 80px 0;
}

.asp-profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.asp-profile-image {
    position: relative;
}

.asp-lightbox-link {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.asp-lightbox-link img {
    width: 100%;
    border-radius: var(--asp-radius);
    box-shadow: var(--asp-shadow);
    transition: var(--asp-transition);
}

.asp-profile-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--asp-secondary);
    border-radius: var(--asp-radius);
    z-index: -1;
}

.asp-zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--asp-primary);
    opacity: 0;
    transition: var(--asp-transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.asp-lightbox-link:hover .asp-zoom-icon {
    opacity: 1;
}

.asp-zoom-icon svg {
    width: 20px;
    height: 20px;
}

.asp-profile-lead {
    font-family: var(--asp-font-body);
    font-size: 18px;
    color: var(--asp-text-light);
    line-height: 1.8;
    margin: 0;
}

/* CITA */
.asp-quote-section {
    background-color: var(--asp-bg-alt);
    padding: 60px 0;
}

.asp-quote {
    font-family: var(--asp-font-body);
    font-size: 20px;
    font-style: italic;
    color: var(--asp-text-light);
    line-height: 1.8;
    margin: 0;
    padding: 30px 40px;
    background: #ffffff;
    border-left: 4px solid var(--asp-primary);
    border-radius: 0 var(--asp-radius) var(--asp-radius) 0;
    box-shadow: var(--asp-shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.asp-quote cite {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--asp-primary);
    font-style: normal;
    margin-top: 15px;
}

/* BIOGRAFÍA */
.asp-bio-section {
    background-color: var(--asp-bg);
    padding: 80px 0;
}

.asp-bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.asp-bio-title {
    font-family: var(--asp-font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--asp-primary);
    margin: 35px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--asp-secondary);
}

.asp-bio-title:first-child {
    margin-top: 0;
}

.asp-bio-text {
    font-family: var(--asp-font-body);
    font-size: 16px;
    color: var(--asp-text-light);
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.asp-bio-list {
    font-family: var(--asp-font-body);
    font-size: 16px;
    color: var(--asp-text-light);
    line-height: 1.8;
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.asp-bio-list li {
    margin-bottom: 10px;
}

.asp-bio-list li:last-child {
    margin-bottom: 0;
}

.asp-bio-list strong {
    color: var(--asp-text);
}

/* VOLVER */
.asp-back-section {
    background-color: var(--asp-bg-alt);
    padding: 60px 0;
    text-align: center;
}

.asp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--asp-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--asp-primary);
    text-decoration: none;
    padding: 14px 30px;
    border: 2px solid var(--asp-primary);
    border-radius: 30px;
    transition: var(--asp-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.asp-back-btn:hover {
    background: var(--asp-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 188, 217, 0.3);
}

/* RESPONSIVE TABLET */
@media only screen and (max-width: 980px) {
    .asp-hero { min-height: 250px; }
    .asp-hero h1 { font-size: 36px; }
    .asp-hero-subtitle { font-size: 16px; }
    .asp-profile-section { padding: 60px 0; }
    .asp-profile-grid { grid-template-columns: 250px 1fr; gap: 40px; }
    .asp-bio-section { padding: 60px 0; }
}

/* RESPONSIVE MOVIL */
@media only screen and (max-width: 767px) {
    .asp-hero { min-height: 220px; }
    .asp-hero h1 { font-size: 28px; letter-spacing: 1px; }
    .asp-hero-subtitle { font-size: 14px; }
    .asp-hero-content { padding: 35px 15px; }
    .asp-container { padding: 0 20px; }
    .asp-profile-section { padding: 50px 0; }
    .asp-profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .asp-profile-image {
        max-width: 250px;
        margin: 0 auto;
    }
    .asp-quote-section { padding: 50px 0; }
    .asp-quote { font-size: 18px; padding: 25px 30px; }
    .asp-bio-section { padding: 50px 0; }
    .asp-bio-title { font-size: 20px; }
    .asp-bio-text, .asp-bio-list { font-size: 15px; }
    .asp-back-section { padding: 50px 0; }
}