/* =============================================
   SERVOLUCIÓN — style.css
   ============================================= */

:root {
    --orange: #F45700;
    --orange-dark: #c94400;
    --orange-light: #ff6a1a;
    --white: #ffffff;
    --off-white: #faf8f5;
    --dark: #111010;
    --dark-2: #1e1c1c;
    --gray: #6b6460;
    --gray-light: #e8e4e0;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-hover: 0 12px 40px rgba(244,87,0,0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: var(--dark);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img { height: 36px; width: auto; }
.logo-fallback {
    display: none;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    color: var(--orange);
    font-size: 1.4rem;
    line-height: 1;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(244,87,0,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(244,87,0,0.08) 0%, transparent 60%);
}
.hero-bg::after {
    content: '▲';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(300px, 40vw, 600px);
    color: rgba(244,87,0,0.06);
    line-height: 1;
    pointer-events: none;
    font-family: sans-serif;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    max-width: 700px;
    padding-left: clamp(24px, 6vw, 80px);
}
.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero-title em {
    font-style: normal;
    color: var(--orange);
}
.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: clamp(24px, 6vw, 80px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--orange);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- LABELS ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 2px;
    background: var(--orange);
}
.section-label--light { color: rgba(255,255,255,0.6); }
.section-label--light::before { background: rgba(255,255,255,0.4); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
}

/* ---- QUIÉNES SOMOS ---- */
.quienes {
    padding: 100px 0;
    background: var(--off-white);
}
.quienes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.quienes-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.quienes-text strong { color: var(--dark); }
.quienes-text em { color: var(--orange); font-style: normal; font-weight: 600; }
.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}
.stat { text-align: left; }
.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.stat span {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.quienes-visual { display: flex; flex-direction: column; gap: 16px; }
.visual-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.visual-card--accent {
    background: var(--dark);
    border-color: var(--dark);
}
.visual-icon {
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 16px;
}
.visual-mission { font-size: 0.95rem; line-height: 1.7; color: var(--gray); }
.visual-mission strong { display: block; color: var(--dark); margin-bottom: 6px; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.visual-card--accent .visual-mission { color: rgba(255,255,255,0.65); }
.visual-card--accent .visual-mission strong { color: var(--white); }

/* ---- PROYECTOS ---- */
.proyectos-section {
    padding: 100px 0;
    background: var(--dark);
}
.proyectos-section .section-title,
.proyectos-section .section-label { }
.proyectos-section .section-title { color: var(--white); }
.proyectos-section .section-desc { color: rgba(255,255,255,0.5); }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }
.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.proyecto-card {
    background: var(--dark-2);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.proyecto-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.proyecto-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.proyecto-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.proyecto-card:hover .proyecto-img img { transform: scale(1.05); }
.proyecto-img--placeholder {
    background: rgba(244,87,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(244,87,0,0.4);
}
.proyecto-body { padding: 24px; }
.proyecto-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(244,87,0,0.35);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.proyecto-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    line-height: 1.2;
}
.proyecto-body p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 16px;
}
.proyecto-fecha {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
}
.empty-state span {
    display: block;
    font-size: 3rem;
    color: rgba(244,87,0,0.2);
    margin-bottom: 16px;
}

/* ---- CONTACTO ---- */
.contacto-section {
    padding: 100px 0;
    background: var(--orange);
    position: relative;
    overflow: hidden;
}
.contacto-section::before {
    content: '▲';
    position: absolute;
    right: -5%;
    bottom: -10%;
    font-size: 500px;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    pointer-events: none;
}
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contacto-info p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}
.contacto-datos { display: flex; flex-direction: column; gap: 20px; }
.dato strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}
.dato span { color: var(--white); font-size: 0.95rem; }
.contacto-form-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.contacto-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(244,87,0,0.1);
}
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.alert-success { background: #d4f5d4; color: #1a6b1a; }
.alert-error { background: #ffe0d8; color: #a83200; }

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon-footer {
    font-size: 1.6rem;
    color: var(--orange);
}
.footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-brand small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

/* ---- ANIMATIONS ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .quienes-grid,
    .contacto-grid { grid-template-columns: 1fr; gap: 48px; }
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links li a {
        display: block;
        padding: 14px 24px;
    }
    .stats-row { gap: 24px; }
    .proyectos-grid { grid-template-columns: 1fr; }
    .contacto-form-wrap { padding: 28px; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-row { flex-wrap: wrap; }
    .footer-inner { flex-direction: column; text-align: center; }
}

/* ---- GALLERY BADGE ---- */
.proyecto-img { position: relative; }
.gallery-badge {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}
.has-gallery:hover { border-color: var(--orange); }
.proyecto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.ver-fotos {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
}

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}
.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal-header { margin-bottom: 28px; padding-right: 40px; }
.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.modal-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ---- CAROUSEL ---- */
.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.carousel-track {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}
.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}
.carousel-slide.active { display: block; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.carousel-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}
.dot.active { background: var(--orange); }
.carousel-counter {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ---- SEMILLERO ---- */
.semillero-section { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.semillero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.semillero-inner { position: relative; }
.semillero-tag-wrap { text-align: center; margin-bottom: 48px; }
.semillero-tag { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 20px; border-radius: 2px; }
.semillero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.semillero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 24px; }
.semillero-title em { font-style: normal; color: var(--orange); }
.semillero-desc { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.semillero-desc strong { color: var(--dark); }
.semillero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 36px 0; padding: 28px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.semillero-stat { text-align: center; }
.semillero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.semillero-stat span { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.semillero-ciclos { display: flex; flex-direction: column; gap: 12px; }
.ciclo { display: flex; align-items: center; gap: 14px; }
.ciclo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.ciclo strong { display: block; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dark); }
.ciclo small { font-size: 0.8rem; color: var(--gray); }
.semillero-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.area-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 8px; padding: 24px; transition: all 0.3s ease; }
.area-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(244,87,0,0.1); }
.area-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.area-card strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark); margin-bottom: 8px; }
.area-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ---- GALLERY & CAROUSEL ---- */
.proyecto-img { position: relative; }
.gallery-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: var(--white); font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.has-gallery:hover { border-color: var(--orange); }
.proyecto-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.ver-fotos { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; position: relative; padding: 40px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 2rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--white); }
.modal-header { margin-bottom: 28px; padding-right: 40px; }
.modal-header h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; color: var(--white); letter-spacing: 0.02em; margin-bottom: 8px; }
.modal-header p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.carousel-track { flex: 1; position: relative; border-radius: 8px; overflow: hidden; background: #000; aspect-ratio: 16/9; }
.carousel-slide { display: none; width: 100%; height: 100%; }
.carousel-slide.active { display: block; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--white); width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; flex-shrink: 0; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: background 0.2s; }
.dot.active { background: var(--orange); }
.carousel-counter { text-align: center; font-family: var(--font-display); font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; margin-top: 8px; }

/* ---- RESPONSIVE SEMILLERO ---- */
@media (max-width: 900px) {
    .semillero-grid { grid-template-columns: 1fr; gap: 48px; }
    .semillero-stats { grid-template-columns: repeat(2, 1fr); }
    .semillero-areas { grid-template-columns: 1fr; }
}
