@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --orange: #F5821F;
    --red:    #C8102E;
    --yellow: #FFDE59;
    --black:  #1A1A1A;
    --gray:   #4D4D4D;
    --gray-light: #666666;
    --white:  #FFFFFF;
    --gradient: linear-gradient(135deg, #F5821F, #C8102E);
    --shadow: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    font-size: 1rem;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background: var(--orange);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(245,130,31,0.25);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    text-decoration: none;
}

.logo span {
    color: var(--yellow);
}

nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 25px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.3px;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
}

nav ul li a.active {
    background: var(--white);
    color: var(--orange);
}

/* ===== HERO ===== */
.hero {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.15;
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 36px;
    opacity: 0.92;
    line-height: 1.8;
    position: relative;
}

/* ===== STATS BAR ===== */
.stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 36px 0;
    position: relative;
}

.stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 18px 28px;
    min-width: 150px;
}

.stat-item .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    display: block;
    color: var(--yellow);
}

.stat-item .stat-label {
    font-size: 0.82rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ===== CTA BUTTONS ===== */
.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
}

.btn-primary {
    background: var(--white);
    color: var(--orange);
}

.btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-orange {
    background: var(--gradient);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200,16,46,0.35);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 24px;
}

.section-center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    background: rgba(245,130,31,0.1);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ===== GRID ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: center;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--black);
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== ACCENT CARD ===== */
.card-accent {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.card-accent h3,
.card-accent p {
    color: var(--white);
}

/* ===== VALUES CARD ===== */
.value-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--orange);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(245,130,31,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--orange);
}

.value-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== PILLAR CARD ===== */
.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--gradient);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--black);
}

.pillar-card ul {
    padding-left: 18px;
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 2;
}

/* ===== PROGRESS BARS ===== */
.progress-item {
    margin-bottom: 24px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
}

.progress-bar {
    background: #f0f0f0;
    border-radius: 30px;
    height: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 30px;
    transition: width 1.5s ease;
}

/* ===== IMPACT SECTION ===== */
.impact-bg {
    background: var(--black);
    color: var(--white);
}

.impact-bg .section-title {
    color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 28px;
    width: 18px;
    height: 18px;
    background: var(--gradient);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--orange);
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 6px;
}

.timeline-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--gray);
    font-size: 0.92rem;
}

/* ===== ADVISOR CARD ===== */
.advisor-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.advisor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
}

.advisor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.advisor-icon {
    width: 70px;
    height: 70px;
    background: rgba(245,130,31,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.advisor-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--black);
}

.advisor-card .advisor-role {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.advisor-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== IMPACT AREA ===== */
.impact-area {
    background: linear-gradient(135deg, #fff8f4, #fff0f0);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.impact-area p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== LOCATION SECTION ===== */
.location-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 25px;
}

/* ===== CONTACT FORM ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--black);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
}

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

/* ===== EVENTS LIST ===== */
.event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: all 0.3s;
    border-left: 5px solid var(--orange);
    margin-bottom: 20px;
}

.event-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.event-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white);
}

.event-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.event-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== NEWS CARD ===== */
.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card-img {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.news-card-body {
    padding: 28px;
}

.news-card-category {
    display: inline-block;
    background: rgba(245,130,31,0.1);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.news-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== SUPPORT CARDS ===== */
.support-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.35s;
    cursor: pointer;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.support-card .support-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.support-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.support-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 60px 24px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 14px;
    display: block;
}

.footer-logo span {
    color: var(--orange);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer ul li a:hover {
    color: var(--orange);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== BG VARIATIONS ===== */
.bg-light {
    background: #fafafa;
}

.bg-orange-soft {
    background: linear-gradient(135deg, #fff8f4, #fff2ee);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--gradient);
    color: var(--white);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.highlight-box h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 14px;
}

.highlight-box p {
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FINANCE CARD ===== */
.finance-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.finance-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.finance-card .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 6px;
}

.finance-card .period {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.finance-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.finance-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
    background: rgba(245,130,31,0.06);
    border-left: 5px solid var(--orange);
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    margin: 32px 0;
    font-style: italic;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(255,255,255,0.25);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* Estado activo: cruz */
.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay de fondo */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.overlay-active {
    display: block;
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* --- Header --- */
    .nav {
        padding: 14px 20px;
    }

    .hamburger {
        display: flex;
    }

    /* Panel de navegación móvil */
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100dvh;
        background: var(--black);
        z-index: 998;
        padding: 80px 28px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    }

    #main-nav.nav-open {
        right: 0;
    }

    #main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    #main-nav ul li a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        color: var(--white);
        border-radius: 10px;
        letter-spacing: 0.3px;
        transition: background 0.2s, color 0.2s;
    }

    #main-nav ul li a:hover {
        background: rgba(245,130,31,0.15);
        color: var(--orange);
    }

    /* Logo RealStar en el panel */
    #main-nav::before {
        content: 'Real Star';
        display: block;
        position: absolute;
        top: 26px;
        left: 28px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 1.3rem;
        color: var(--white);
        letter-spacing: -0.5px;
    }

    /* --- Secciones --- */
    .hero {
        padding: 70px 20px 60px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 20px;
    }

    /* Escuela: metas de impacto */
    #metas .container > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Contacto: formulario + datos */
    .section .grid-2[style*="gap:80px"] {
        gap: 48px !important;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* --- Otros --- */
    .event-card {
        flex-direction: column;
    }

    .stats {
        gap: 12px;
    }

    .stat-item {
        min-width: 130px;
        padding: 14px 18px;
    }

    .highlight-box {
        padding: 36px 24px;
    }

    .finance-card {
        transform: none !important;
    }

    /* Nosotros: valores grid */
    .section div[style*="repeat(3,1fr)"] {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    /* Timeline ancho completo */
    .timeline {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    .card {
        padding: 24px 20px;
    }

    .pillar-card {
        padding: 28px 20px;
    }

    .event-card {
        padding: 24px 20px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .location-tags {
        justify-content: center;
    }

    /* Formulario contacto: dos columnas → una */
    div[style*="grid-template-columns:1fr 1fr"] {
        display: block !important;
    }

    div[style*="grid-template-columns:1fr 1fr"] .form-group {
        margin-bottom: 20px;
    }

    .highlight-box {
        padding: 28px 20px;
    }

    .advisor-card {
        padding: 24px 20px;
    }

    .quote-block {
        padding: 20px 22px;
    }
}
