/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fb;
}

/* Hero Section */
.hero {
    background-image: url('https://ext.same-assets.com/2529633410/1533906315.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-mascot {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section Styles */
.section {
    background: white;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
    background-color: #2c3f6f;
    color: white;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section-icon {
    flex-shrink: 0;
}

.section-content {
    padding: 2rem 1.5rem;
}

.section-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
}

.section-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.section-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c3f6f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-orange {
    background-color: #e9621b;
}

.btn-orange:hover {
    background-color: #d55517;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 98, 27, 0.3);
}

.btn-green {
    background-color: #1eba96;
}

.btn-green:hover {
    background-color: #17a67e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 186, 150, 0.3);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #cad4dd;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e9621b;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9621b;
}

.timeline-content {
    background: #f8f9fb;
    padding: 1.2rem;
    border-radius: 8px;
}

.timeline-date {
    color: #1eba96;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    color: #2c3f6f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Prizes Grid */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.prize-card {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.prize-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #2c3f6f;
}

.prize-card h3 {
    color: #2c3f6f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.prize-card p {
    color: #555;
    margin: 0.3rem 0;
}

.prize-special {
    color: #e9621b;
    font-weight: 700;
}

/* Criteria Styles */
.criteria {
    padding: 1rem 0;
}

.criteria-item {
    margin-bottom: 1.5rem;
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.criteria-header span {
    color: #333;
    font-weight: 500;
}

.criteria-percentage {
    font-weight: 700;
    color: #2c3f6f;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e8ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Form Container */
.form-container {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Recuerda Section */
.recuerda-section {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.recuerda-section h2 {
    color: #2c3f6f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.recuerda-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.info-card {
    background: white;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    padding: 2rem;
}

.info-card h3 {
    background-color: #2c3f6f;
    color: white;
    padding: 1rem;
    margin: -2rem -2rem 1.5rem -2rem;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c3f6f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Consejos Section */
.consejos-section {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.consejos-section h2 {
    color: #2c3f6f;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.consejos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.consejo-card {
    background: #2c3f6f;
    color: white;
    padding: 2rem;
    border-radius: 8px;
}

.consejo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.consejo-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.consejo-card ul {
    list-style: none;
    padding: 0;
}

.consejo-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consejo-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1eba96;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Señales Section */
.senales-section {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.senales-section h2 {
    color: #2c3f6f;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.senales-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.senales-table thead {
    background-color: #2c3f6f;
    color: white;
}

.senales-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.senales-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8ecef;
    color: #555;
}

.senales-table tbody tr:hover {
    background-color: #f8f9fb;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.dot-red {
    background-color: #dc3545;
}

.dot-yellow {
    background-color: #ffc107;
}

.dot-blue {
    background-color: #007bff;
}

/* Footer */
.footer {
    background-color: #e8ecef;
    color: #666;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-mascot {
        max-width: 250px;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .info-cards,
    .consejos-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 0;
    }

    .recuerda-section h2 {
        font-size: 2rem;
    }

    .consejos-section h2 {
        font-size: 1.5rem;
    }

    .senales-table {
        font-size: 0.85rem;
    }

    .senales-table th,
    .senales-table td {
        padding: 0.7rem;
    }

    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-content {
        padding: 1.5rem 1rem;
    }
}