/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 02 2025 | 04:08:10 */
/* Scoped styles - Doctorado Page */
.doctorado1-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.doctorado1-container {
    font-family: 'Arial', sans-serif;
    background-color: transparent;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.doctorado1-container .doctorado1-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
}

.doctorado1-header {
    background: transparent;
    color: #1e40af;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.doctorado1-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        rgba(30, 64, 175, 0.4) 0px,
        rgba(30, 64, 175, 0.4) 2px,
        transparent 2px,
        transparent 8px
    );
    transform: skewX(-15deg);
    animation: doctorado1-slidePattern 4s ease-in-out infinite;
}

.doctorado1-page-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #22d3ee, #0891b2, #22d3ee);
    background-size: 200% 200%;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    border-radius: 0 0 8px 8px;
    animation: doctorado1-pagePulse 2s ease-in-out infinite;
}

.doctorado1-page-number::before {
    content: 'PAGE';
    font-size: 10px;
    margin-right: 5px;
}

.doctorado1-header-content {
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.doctorado1-main-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #1e40af !important;
    background: linear-gradient(45deg, #1e40af, #3b82f6, #60a5fa, #1e40af);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: doctorado1-gradientFlow 4s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 30px rgba(30, 64, 175, 0.3);
}

.doctorado1-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    transform: translateX(-50%);
    animation: doctorado1-lineGlow 3s ease-in-out infinite;
}

.doctorado1-description-section {
    padding: 0 40px 20px 40px;
}

.doctorado1-description-box {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 25%, #1e3a8a 50%, #3730a3 75%, #1e40af 100%);
    background-size: 400% 400%;
    padding: 30px;
    color: white;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
    animation: doctorado1-backgroundShift 6s ease-in-out infinite;
}

.doctorado1-description-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #22d3ee, #60a5fa, #3b82f6);
    background-size: 300% 300%;
    border-radius: 12px;
    z-index: -1;
    animation: doctorado1-borderGlow 4s ease-in-out infinite;
}

.doctorado1-description-box::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: doctorado1-floatOrb 8s ease-in-out infinite;
}

.doctorado1-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
}

.doctorado1-description-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.doctorado1-content-area {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.doctorado1-objectives-section {
    /* Primary background image */
    background-image: url('https://myeicu.org/wp-content/uploads/2025/09/PhD-e1756766485152.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Fallback gradient in case image doesn't load */
    background-color: #e2e8f0;
    
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Alternative approach - try loading via CSS with different protocols */
@supports (background-image: url('data:')) {
    .doctorado1-objectives-section {
        background-image: 
            linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1)),
            url('https://myeicu.org/wp-content/uploads/2025/09/PhD-e1756766485152.webp');
    }
}

.doctorado1-objectives-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.doctorado1-objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    animation: doctorado1-overlayShimmer 5s ease-in-out infinite;
}

.doctorado1-objectives-content {
    position: relative;
    z-index: 2;
}

.doctorado1-objectives-title {
    font-size: 16px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 25px;
    text-transform: lowercase;
}

.doctorado1-objectives-list {
    list-style: none;
    counter-reset: doctorado1-counter;
}

.doctorado1-objectives-list li {
    counter-increment: doctorado1-counter;
    margin-bottom: 0em;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.doctorado1-objectives-list li:hover {
    transform: translateX(10px);
    color: #1f2937;
}

.doctorado1-objectives-list li::before {
    content: counter(doctorado1-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #1e40af;
    transition: all 0.3s ease;
}

.doctorado1-objectives-list li:hover::before {
    color: #3b82f6;
    transform: scale(1.2);
}

.doctorado1-objectives-list li strong {
    color: #1f2937;
}

.doctorado1-sidebar {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 25%, #1e3a8a 50%, #3730a3 75%, #1e40af 100%);
    background-size: 400% 400%;
    color: white;
    padding: 30px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    height: fit-content;
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
    position: relative;
    overflow: hidden;
    animation: doctorado1-sidebarFloat 6s ease-in-out infinite;
}

.doctorado1-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: doctorado1-continuousShine 4s linear infinite;
}

.doctorado1-sidebar::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    animation: doctorado1-breathe 2s ease-in-out infinite;
}

.doctorado1-footer {
    text-align: right;
    padding: 20px 40px;
    background: #f9fafb;
    font-size: 12px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

/* Scoped particle canvas - positioned within container */
.doctorado1-container .particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Scoped floating elements - positioned within container */
.doctorado1-container .floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    font-size: 20px;
    color: #3b82f6;
    opacity: 0;
    transition: all 0.3s ease;
}

.doctorado1-container .ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    pointer-events: none;
    animation: doctorado1-clickRipple 0.8s ease-out forwards;
}

/* Unique Animations */
@keyframes doctorado1-gradientFlow {0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
@keyframes doctorado1-lineGlow {0%,100%{opacity:.7;transform:translateX(-50%) scale(1)}50%{opacity:1;transform:translateX(-50%) scale(1.1)}}
@keyframes doctorado1-slidePattern {0%,100%{transform:translateX(0) skewX(-15deg);opacity:.4}50%{transform:translateX(10px) skewX(-15deg);opacity:.6}}
@keyframes doctorado1-pagePulse {0%,100%{background-position:0% 50%;box-shadow:0 0 20px rgba(34,211,238,0.5)}50%{background-position:100% 50%;box-shadow:0 0 30px rgba(34,211,238,0.8)}}
@keyframes doctorado1-backgroundShift {0%,100%{background-position:0% 0%}50%{background-position:100% 100%}}
@keyframes doctorado1-borderGlow {0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
@keyframes doctorado1-floatOrb {0%,100%{transform:translate(0,0) scale(1);opacity:.3}50%{transform:translate(-20px,-10px) scale(1.2);opacity:.5}}
@keyframes doctorado1-overlayShimmer {0%,100%{background:linear-gradient(45deg,rgba(30,64,175,.1),rgba(59,130,246,.1))}50%{background:linear-gradient(45deg,rgba(59,130,246,.15),rgba(30,64,175,.05))}}
@keyframes doctorado1-sidebarFloat {0%,100%{background-position:0% 0%;transform:translateY(0)}50%{background-position:100% 100%;transform:translateY(-2px)}}
@keyframes doctorado1-continuousShine {0%{left:-100%}100%{left:100%}}
@keyframes doctorado1-breathe {0%,100%{opacity:.5;transform:scale(1)}50%{opacity:1;transform:scale(1.5)}}
@keyframes doctorado1-floatParticle {0%{transform:translateY(100vh) rotate(0deg);opacity:0}10%,90%{opacity:.6}100%{transform:translateY(-100px) rotate(360deg);opacity:0}}
@keyframes doctorado1-clickRipple {0%{transform:scale(1);opacity:1}100%{transform:scale(20);opacity:0}}
@keyframes floatUp {from{transform:translateY(0) rotate(0deg);opacity:1}to{transform:translateY(-100px) rotate(360deg);opacity:0}}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .doctorado1-page-number {right: 10px; top: -5px; padding: 6px 12px; font-size: 12px;}
    .doctorado1-header-content {padding: 10px 20px;}
    .doctorado1-main-title {font-size: 28px; margin-bottom: 15px; text-align: center;}
    .doctorado1-description-section {padding: 0 15px 15px;}
    .doctorado1-description-box {padding: 20px; margin: 10px 0;}
    .doctorado1-section-title {font-size: 16px;}
    .doctorado1-description-text {font-size: 13px; line-height: 1.5;}
    .doctorado1-content-area {grid-template-columns: 1fr; padding: 15px; gap: 20px;}
    .doctorado1-objectives-section {padding: 20px;}
    .doctorado1-objectives-title {font-size: 14px;}
    .doctorado1-objectives-list li {font-size: 12px; margin-bottom: 0em;}
    .doctorado1-sidebar {padding: 20px; font-size: 12px;}
    .doctorado1-footer {padding: 15px 20px; font-size: 11px;}
}

@media (max-width: 480px) {
    .doctorado1-main-title {font-size: 24px;}
    .doctorado1-description-box {padding: 15px;}
    .doctorado1-description-text {font-size: 12px;}
    .doctorado1-objectives-section {padding: 15px;}
    .doctorado1-objectives-list li {font-size: 11px; margin-bottom: 0em;}
    .doctorado1-sidebar {padding: 15px; font-size: 11px;}
}
