@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700;900&display=swap');
:root {
    --color-primary: #d42621;
    --color-secondary: #F86F03;
    --color-tertiary: #FFA41B;
    --color-dark: #03542c;
    --color-body: #6F6B80;
    --color-white: #ffffff;
    --color-shape: #EEEEEE;
    --font-primary: 'Urbanist', sans-serif;
}
html, body {
    height: 100%;
}
body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    background: #0047ab !important;
    color: var(--color-body);
    min-height: 100vh;
}
header, main, footer {
    background: transparent !important;
}
header {
    text-align: center;
    padding: 2.5rem 1rem 2rem 1rem;
    background: transparent !important;
    border-radius: 0;
    margin: 2rem auto 2.5rem auto;
    max-width: 900px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 0.7rem 0;
}
.subtitle {
    color: #fff;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 2rem;
}
.courses {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}
.course-block {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    color: #111;
    text-align: left;
}
.green-title {
    color: #21804b;
    font-size: 2.3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.2em;
}
.red-divider {
    width: 180px;
    height: 4px;
    background: #d32f2f;
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}
.bold-list {
    font-weight: 700;
    font-size: 1.18rem;
    color: #111;
    margin-bottom: 2.2rem;
    list-style: none;
    padding: 0;
    text-align: left;
}
.bold-list li {
    margin-bottom: 0.3em;
}
.side-by-side-boxes {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 1.2rem;
}
.rounded-box {
    border: 2px solid #4caf50;
    border-radius: 22px;
    background: #fff;
    padding: 1.2rem 2.2rem;
    min-width: 210px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.18rem;
    box-sizing: border-box;
}
.gray-bg {
    background: #ededf0;
}
.course-date-box .date-label {
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5em;
    text-align: left;
}
.course-cost-box .cost-label {
    font-weight: 700;
    color: #111;
    margin-bottom: 0.3em;
    text-align: left;
    font-size: 1.13rem;
}
.course-cost-box .payment-note {
    font-style: italic;
    color: #111;
    font-size: 1rem;
    margin-top: 0.7em;
    text-align: left;
}
.italic {
    font-style: italic;
}
.right-align {
    text-align: right;
}
.center {
    text-align: center;
}
.bold {
    font-weight: 700;
}
.small {
    font-size: 1.05rem;
}
.course-note {
    margin-top: 1.7rem;
    font-size: 1.15rem;
    color: #222;
    font-style: italic;
    text-align: right;
}
.red-text {
    color: #d32f2f;
}
.course-prep-note {
    margin-top: 0.6rem;
    text-align: right;
}
.course-prep-note a {
    color: #0047ab;
    text-decoration: none;
}
.course-prep-note a:hover {
    text-decoration: underline;
}
.inscripcion-btn {
    display: block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin: 2.5rem auto 2rem auto;
    box-shadow: 0 2px 8px rgba(212,38,33,0.10);
    text-align: center;
    width: fit-content;
}
.inscripcion-btn:hover, .inscripcion-btn:focus {
    background: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(248,111,3,0.15);
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 2rem 0;
    color: #fff;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-item .icon {
    font-size: 1.7rem;
    color: #fff;
}
.locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.location-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    border: 1.5px solid var(--color-tertiary);
    font-size: 1rem;
}
.location-block a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}
.location-block a:hover {
    text-decoration: underline;
}
.location-label {
    color: var(--color-body);
    font-size: 1rem;
}
footer {
    text-align: center;
    padding: 1.2rem 1rem;
    font-size: 1.05rem;
    color: #0047ab;
    background: #fff;
    margin-top: 2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}
.course-title {
    color: #178a3a;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.5rem 0;
}
.course-divider {
    width: 100px;
    height: 4px;
    background: #d42621;
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}
.course-schedule {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
    text-align: left;
    list-style: none;
    padding: 0;
}
.course-schedule li {
    margin-bottom: 0.5rem;
}
.course-details-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.course-date-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    background: #ededf0;
    border: 2px solid #6fc08c;
    border-radius: 18px;
    padding: 1.1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    min-width: 180px;
    margin-bottom: 0.5rem;
}
.course-date-box strong {
    display: block;
    text-align: left;
    width: 100%;
}
.course-cost-box {
    flex: 2;
}
.course-cost-box em {
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    color: #222;
    display: block;
    margin-top: 0.5rem;
}
@media (max-width: 600px) {
    .courses {
        max-width: 100%;
    }
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    .course-block {
        min-width: 120px;
        padding: 1rem 0.5rem;
    }
    .location-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}
@media (max-width: 700px) {
    .course-block {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    .course-details-row {
        flex-direction: column;
        gap: 0.7rem;
    }
    .course-date-box, .course-cost-box {
        min-width: 120px;
        padding: 0.7rem 0.7rem;
    }
    .course-title {
        font-size: 1.3rem;
    }
    .side-by-side-boxes {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .rounded-box {
        min-width: unset;
        width: 100%;
        padding: 1.1rem 1rem;
    }
}
.google-maps-container {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto 2rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #fff;
}
.google-maps-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}
@media (max-width: 700px) {
    .google-maps-container iframe {
        height: 300px;
    }
}
.map-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0853a5;
    margin: 0 0 0.5rem 1rem;
    padding-top: 1rem;
}
.map-link-btn {
    display: inline-block;
    background: #0047ab;
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    margin: 1rem 0 1rem 1rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.map-link-btn:hover, .map-link-btn:focus {
    background: #178a3a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(24,138,58,0.15);
}
.otros-niveles-info {
    text-align: center;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin: 2rem auto 1.5rem auto;
    letter-spacing: 0.01em;
    max-width: 700px;
} 