/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 60px 60px;
    animation: sparkle 10s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 3.5em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    text-shadow: 2px 2px 0 #333;
}

/* Section Titles */
.section-title {
    font-family: 'Bangers', cursive;
    font-size: 2.5em;
    color: #333;
    text-shadow: 3px 3px 0 #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #333;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

/* Information Section */
.info-section {
    padding: 80px 0;
    background: #fff;
}

.info-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

.info-card.featured {
    border-color: #ffd93d;
}

.info-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.info-header h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.2em;
    text-shadow: 2px 2px 0 #333;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
}

.info-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    border: 2px solid #eee;
}

.info-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.info-item h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-item p {
    color: #666;
    font-size: 1.1em;
    font-weight: 600;
}

/* Sections */
.prerequisites-section,
.access-section,
.objectives-section,
.content-section,
.methods-section,
.accessibility-section,
.performance-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.prerequisites-section:nth-child(even),
.access-section:nth-child(even),
.objectives-section:nth-child(even),
.content-section:nth-child(even),
.methods-section:nth-child(even),
.accessibility-section:nth-child(even),
.performance-section:nth-child(even) {
    background: #fff;
}

/* Requirements List */
.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    padding: 20px;
    background: #e8f5e8;
    border-radius: 15px;
    border-left: 5px solid #2ecc71;
    position: relative;
    padding-left: 60px;
}

.requirements-list li::before {
    content: "✅";
    position: absolute;
    left: 20px;
    font-size: 1.5em;
}

/* Access Steps */
.access-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    border: 3px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid #333;
    text-shadow: 2px 2px 0 #333;
}

.step p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Audit Info */
.audit-info {
    background: #fff3cd;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #ffc107;
    text-align: center;
}

.audit-info p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.access-delay {
    background: #d4edda;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #2ecc71;
    margin-top: 20px !important;
    font-weight: 600;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.objective-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #333;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.objective-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.objective-item p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.content-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    position: relative;
    padding-left: 50px;
}

.content-list li::before {
    content: "📖";
    position: absolute;
    left: 15px;
    font-size: 1.2em;
}

/* Competences Grid */
.competences-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.competence-item {
    padding: 20px;
    background: #e3f2fd;
    border-radius: 15px;
    border-left: 5px solid #2196f3;
    font-size: 1.1em;
    line-height: 1.6;
}

.additional-hours {
    background: #fff3e0;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #ff9800;
    text-align: center;
}

/* Methods Grid */
.methods-intro {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.method-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-item h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.evaluation-section {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #4169e1;
}

.evaluation-section h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.evaluation-list {
    list-style: none;
    padding: 0;
}

.evaluation-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #4169e1;
    font-size: 1.1em;
}

/* Accessibility Grid */
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.accessibility-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #333;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accessibility-item h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.accessibility-item p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.accessibility-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.accessibility-item a:hover {
    text-decoration: underline;
}

/* Medical Centers */
.medical-centers {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #6c757d;
}

.medical-centers h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.center-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    text-align: center;
}

.center-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.center-item a:hover {
    text-decoration: underline;
}

.doctor-info {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #2196f3;
    text-align: center;
    font-weight: 600;
}

/* Performance Indicators */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.indicator-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #333;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.indicator-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.indicator-item h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.indicator-item p {
    color: #666;
    font-size: 1.1em;
    margin: 0;
}

/* Buttons */
.btn-comic {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    border: 3px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin: 10px;
}

.btn-comic.primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-shadow: 2px 2px 0 #333;
}

.btn-comic.secondary {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #fff;
    text-shadow: 2px 2px 0 #333;
}

.btn-comic:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.btn-comic i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .info-grid,
    .objectives-grid,
    .methods-grid,
    .accessibility-grid,
    .indicators-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .centers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .info-item,
    .objective-item,
    .method-item,
    .accessibility-item,
    .indicator-item {
        padding: 20px;
    }
}
