/*
 * Mi Arco Iris - Modern Design
 * Inspired by Kidzena / Homeschool templates
 */

/* === RESET === */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === LAYOUT === */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === RAINBOW BAR === */

.rainbow-bar {
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF6B6B 0%,
        #FF9F43 20%,
        #FFD93D 40%,
        #6BCB77 60%,
        #4ECDC4 80%,
        #4D96FF 100%
    );
}

/* === WAVES === */

.wave {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 2;
}

.wave-top {
    margin-bottom: -1px;
}

.wave-bottom {
    margin-top: -1px;
}

/* === SECTION TITLES === */

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ECDC4;
    margin-bottom: 8px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 40px;
}

.features .section-label,
.features .section-title,
.activities .section-label,
.activities .section-title,
.activities .section-sub,
.gallery .section-label,
.gallery .section-title {
    text-align: center;
}

/* === HEADER === */

.site-header {
    padding: 16px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 56px;
    width: auto;
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav .nav-links a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    border-radius: 8px;
    transition: all 0.2s;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: #4ECDC4;
}

.btn-nav {
    background: #4ECDC4 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
}

.btn-nav:hover {
    background: #45b8b0 !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* === BUTTONS === */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #4ECDC4;
    color: #fff;
    border-color: #4ECDC4;
}

.btn-primary:hover {
    background: #45b8b0;
    border-color: #45b8b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    border-color: #4ECDC4;
    color: #4ECDC4;
}

.btn-white {
    background: #fff;
    color: #4ECDC4;
    border-color: #fff;
}

.btn-white:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* === HERO === */

.hero {
    background: linear-gradient(135deg, #e8faf8 0%, #f0f7ff 50%, #fff5f5 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ECDC4;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #2d3436;
    margin-bottom: 20px;
}

.hero-color {
    color: #4ECDC4;
}

.hero-sub {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .wave {
    position: relative;
    bottom: 0;
    margin-top: 60px;
}

/* Hero decorative circles */
.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(78, 205, 196, 0.12);
    top: 20px;
    right: -40px;
}

.hero-circle-2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 217, 61, 0.15);
    top: 180px;
    right: 200px;
}

.hero-circle-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 107, 107, 0.12);
    top: 60px;
    right: 120px;
}

/* === FEATURE CARDS === */

.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-blue {
    background: #4D96FF;
}

.feature-coral {
    background: #FF6B6B;
}

.feature-yellow {
    background: #FFD93D;
    color: #6b5900;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: inherit;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    color: inherit;
}

/* === ABOUT SECTION === */

.about {
    position: relative;
}

.about-inner {
    background: #f0f7ff;
    padding: 60px 0;
}

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

.about-images {
    position: relative;
}

.about-img-main img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    border: 4px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-img-secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: #FFD93D;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #6b5900;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.about-badge span {
    font-size: 12px;
    font-weight: 700;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text .btn {
    margin-top: 12px;
}

/* === ACTIVITIES === */

.activities {
    padding: 80px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.2s;
    border: 1px solid #f0f0f0;
}

.activity-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-item span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* === GALLERY === */

.gallery {
    position: relative;
}

.gallery-inner {
    background: #fafafa;
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* === INFO SECTION === */

.info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    padding: 32px 28px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: inherit;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.95;
}

.info-card a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-green {
    background: #6BCB77;
}

.info-blue {
    background: #4D96FF;
}

.info-coral {
    background: #FF6B6B;
}

/* === ACCORDION === */

.accordion-section {
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    transition: background 0.2s;
}

.accordion-trigger:hover {
    background: #fafafa;
}

.accordion-trigger svg {
    transition: transform 0.3s;
    color: #4ECDC4;
    flex-shrink: 0;
}

.accordion-item.open .accordion-trigger svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    padding: 0 24px 20px;
}

.accordion-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* === EVENTS GRID === */

.events-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #2d3436;
    margin: 56px 0 32px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.2s;
}

.event-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.event-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
}

.event-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === SALAS === */

.salas-section {
    padding: 80px 0;
    text-align: center;
}

.salas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sala-card {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-top: 4px solid #4ECDC4;
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.2s;
}

.sala-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.sala-age {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    line-height: 1;
    margin-bottom: 8px;
}

.sala-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    margin-bottom: 0;
}

/* === CONTACT SECTION === */

.contact-section {
    position: relative;
}

.contact-inner {
    background: #f0f7ff;
    padding: 60px 0;
}

.contact-section .section-label,
.contact-section .section-title {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 16px;
}

.contact-info-card p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.contact-info-card strong {
    color: #444;
}

.contact-info-card a {
    color: #4ECDC4;
}

.contact-info-card a:hover {
    color: #45b8b0;
}

.contact-form-side {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

/* === FOOTER === */

.site-footer {
    background: #2d3436;
    padding: 60px 0 0;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}

.site-footer h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #999;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4ECDC4;
}

.footer-contact p {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #999;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #4ECDC4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}


/* ===========================================
   LEGACY SUPPORT - Other pages still use old structure
   =========================================== */

#content-wrapper {
    position: relative !important;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
}

#container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: auto;
    overflow: visible;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    height: auto;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

#logo {
    float: none;
    width: auto;
    margin: 0;
}

#logo img {
    height: 56px;
    width: auto;
}

/* Legacy navigation */
.sf-menu {
    position: relative;
    float: none;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto;
    border: none;
    bottom: auto;
    right: auto;
}

.sf-menu li {
    float: none;
}

.sf-menu a {
    padding: 8px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #555 !important;
    border-radius: 8px;
    text-shadow: none !important;
    text-transform: none;
    transition: color 0.2s;
}

.sf-menu a:hover,
.sf-menu li.current > a {
    color: #4ECDC4 !important;
    background: transparent !important;
    text-decoration: none !important;
    transform: none;
    box-shadow: none;
}

/* Legacy main content */
#main {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 40px 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    animation: none;
}

/* Legacy page title */
.page_title {
    background: linear-gradient(135deg, #e8faf8 0%, #f0f7ff 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    margin: 0 0 28px 0 !important;
}

.page_title h1 {
    color: #2d3436 !important;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-shadow: none !important;
    margin-bottom: 0;
    line-height: 1.2;
}

.red.page_title {
    background: linear-gradient(135deg, #e8faf8 0%, #f0f7ff 100%) !important;
}

.red.page_title h1 {
    color: #2d3436 !important;
}

/* Legacy typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.3;
}

h2.replace {
    color: #2d3436;
    border-bottom: 2px solid #4ECDC4;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}

p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 16px;
}

/* Legacy columns */
.col_445,
.col_312 {
    background: transparent;
    padding: 0 10px !important;
    border-radius: 0;
}

.full {
    margin: 0;
}

/* Legacy checklist */
ul.checklist {
    padding: 0 !important;
    margin: 0;
    background: transparent;
    border-left: none;
}

ul.checklist li {
    padding: 0 !important;
    position: relative;
    background: none !important;
    line-height: 1.6;
}

ul.checklist li::before {
    display: none;
}

ul.checklist li[id] {
    cursor: pointer;
    background: #fafafa !important;
    border: 1px solid #f0f0f0;
    margin: 8px 0;
    padding: 18px 24px !important;
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.2s;
    border-left: 4px solid #4ECDC4;
}

ul.checklist li[id]:hover {
    background: #f5f5f5 !important;
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

ul.checklist li[id] strong {
    color: #2d3436;
    font-size: 16px;
    font-weight: 700;
}

/* Expandable text */
.texto_comedor,
.texto_convivencia,
.texto_ideario,
.texto_funcionamiento,
.texto_actos,
.texto_actos1,
.texto_actos2,
.texto_actos3,
.texto_actos4,
.texto_actos5,
.texto_actos6,
.texto1 {
    background: #f8fffe;
    padding: 10px 16px !important;
    margin: 4px 0 !important;
    border-radius: 8px;
    border-left: 3px solid #4ECDC4;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Legacy footer - full width breakout */
#footer {
    background: #2d3436 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 32px 24px !important;
    margin-bottom: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF6B6B 0%,
        #FF9F43 20%,
        #FFD93D 40%,
        #6BCB77 60%,
        #4ECDC4 80%,
        #4D96FF 100%
    );
}

#footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-top: 0;
}

#footer-note {
    color: #999;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    float: none !important;
}

#footer a {
    color: #999 !important;
}

#footer a:hover {
    color: #4ECDC4 !important;
}

/* Legacy nav: style last item (Contacto) as teal button */
.sf-menu li:last-child a {
    background: #4ECDC4 !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 24px !important;
}

.sf-menu li:last-child a:hover {
    background: #45b8b0 !important;
    color: #fff !important;
}

/* Legacy form styles */
.form-contacto {
    background: #fafafa;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    margin: 24px 0;
}

.form-contacto h3 {
    color: #2d3436;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #4ECDC4;
    font-size: 22px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #4ECDC4;
    outline: none;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-enviar {
    background: #4ECDC4;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-enviar:hover {
    background: #45b8b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.35);
}

.datos-contacto {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.datos-contacto h4 {
    color: #2d3436;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 800;
}

.datos-contacto p {
    margin-bottom: 8px;
    font-size: 15px;
}

.datos-contacto strong {
    color: #444;
}

.datos-contacto a {
    color: #4ECDC4;
}

.datos-contacto a:hover {
    color: #45b8b0;
}

.mensaje-exito {
    background: #f0faf0;
    color: #2d6a2e;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #d4edda;
    font-size: 15px;
    font-weight: 600;
}

.mensaje-error {
    background: #fef0f0;
    color: #8b2020;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #f8d7da;
    font-size: 15px;
    font-weight: 600;
}

/* Legacy horarios */
.horarios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.horario-card {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-top: 4px solid #4ECDC4;
}

.horario-card h5 {
    color: #666;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.horario-card p {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

/* Legacy gallery */
.gallery_module img {
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 0;
    box-shadow: none;
}

/* Legacy utility */
.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
}

.clearfix::after {
    clear: both;
}

.clear {
    clear: both;
}

.pad-left-10 {
    padding-left: 10px;
}

/* Disable supersized background */
#supersized {
    display: none !important;
}
