/* Burbuja de horario laboral: estilos adaptativos a tema */
#burbuja-horario {
    background: rgba(10,10,30,0.98);
    color: #fff;
    transition: background 0.3s, color 0.3s;
}
[data-theme="light"] #burbuja-horario {
    background: rgba(255,255,255,0.98);
    color: #0a0a1e;
    box-shadow: 0 8px 32px 0 rgba(0,92,255,0.10);
}
[data-theme="dark"] #burbuja-horario {
    background: rgba(10,10,30,0.98);
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(0,255,180,0.18);
}
/* Overlay de fondo para mejorar legibilidad en ambos temas */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(rgba(24,28,34,0.32), rgba(24,28,34,0.18));
    transition: background 0.4s;
}
[data-theme="light"] .background-overlay {
    background: linear-gradient(rgba(255,255,255,0.18), rgba(10,92,133,0.10));
}

/* Sticky menu principal y sombra al hacer scroll */
.header-row[role="navigation"] {
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: none;
    background: var(--header-bg);
    transition: box-shadow 0.3s, background 0.3s;
}
.header-row[role="navigation"].scrolled {
    box-shadow: 0 4px 24px 0 rgba(10,92,133,0.18), 0 1.5px 6px 0 rgba(26,26,28,0.08);
    background: var(--header-bg);
}

@media (max-width: 900px) {
    .header-row[role="navigation"] {
        position: sticky;
        top: 0;
    }
}

/* Accesibilidad: focus visible */
.nav-link:focus-visible, .lang-btn:focus-visible, .toggle-theme-input:focus-visible, .main-section:focus-visible {
    outline: 2.5px solid var(--color-accent);
    outline-offset: 2px;
    box-shadow: 0 0 8px var(--color-accent);
}
/* Quantum Title Animation */
.titulo-quantum {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0ff;
    background: none;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5em;
}
.titulo-quantum span.quantum-char {
    display: inline-block;
    animation: quantum-flicker 2.2s 1;
}
.titulo-quantum span.quantum-char:nth-child(3n) {
    animation-delay: 0.2s;
}
.titulo-quantum span.quantum-char:nth-child(4n) {
    animation-delay: 0.4s;
}
.titulo-quantum span.quantum-char:nth-child(5n) {
    animation-delay: 0.6s;
}
@keyframes quantum-flicker {
    0%, 100% { opacity: 1; transform: translateY(0); }
    10% { opacity: 0.7; }
    20% { opacity: 0.4; transform: translateY(-2px); }
    30% { opacity: 1; }
    40% { opacity: 0.6; transform: translateY(2px); }
    50% { opacity: 1; }
    60% { opacity: 0.5; }
    70% { opacity: 1; }
    80% { opacity: 0.8; }
    90% { opacity: 1; }
}
.eslogan-quantum {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 1.25rem;
    color: #00e6d8;
    text-align: center;
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: none;
    border: none;
}
/* Animaciones de entrada para secciones (excepto home) */
.section-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.98) skewY(2deg);
    transition: opacity 0.9s cubic-bezier(.23,1.12,.32,1),
                            transform 0.9s cubic-bezier(.23,1.12,.32,1);
    will-change: opacity, transform;
}
.section-animate.section-animated {
    opacity: 1;
    transform: none;
}
/* About Us section (English) - same styles as Spanish version */
/* ======= SERVICES CARDS SECTION ======= */
.services-cards-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.2rem;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.2em;
    padding-right: 1.2em;
    align-items: stretch;
    max-width: 100%;
}

.service-card {
    background: rgba(10, 92, 133, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0;
    text-align: center;
    transition: box-shadow 0.2s;
}

.services-cards-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
}

.service-card {
    flex: 0 1 calc(33.333% - 2.5rem);
    max-width: calc(33.333% - 2.5rem);
}

.service-card:hover {
    box-shadow: 0 4px 24px 0 rgba(10,92,133,0.18);
}
.service-card-icon {
    font-size: 3.2rem;
    color: var(--color-primary);
    margin-bottom: 0.7rem;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.3rem 0;
}
.service-card-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
[data-theme="dark"] .service-card {
    background: rgba(10, 223, 240, 0.10);
    box-shadow: 0 2px 12px 0 rgba(255,255,255,0.08);
}
[data-theme="dark"] .service-card-title, [data-theme="dark"] .service-card-icon {
    color: #fff !important;
}
[data-theme="light"] .service-card-title, [data-theme="light"] .service-card-icon {
    color: #181c22 !important;
}
[data-theme="dark"] .service-card-desc {
    color: #d1d5db;
}
[data-theme="light"] .service-card-desc {
    color: #23272f;
}
@media (max-width: 900px) {
    .services-cards-row {
        flex-direction: row;
        gap: 1.2rem;
    }
    .service-card {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 1rem 0.7rem 1.2rem 0.7rem;
    }
}
.about-mission-vision {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.2em;
    padding-right: 1.2em;
    align-items: stretch;
    max-width: 100%;
}
.about-mission, .about-vision, .about-objectives {
    flex: 1 1 0;
    background: rgba(10, 92, 133, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0;
}
.about-mission h3, .about-vision h3, .about-objectives h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.3rem 0;
}
.about-mission p, .about-vision p, .about-objectives ul {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.about-objectives ul {
    padding-left: 1.2em;
}
.about-objectives li {
    margin-bottom: 0.5em;
}
[data-theme="dark"] .about-mission, [data-theme="dark"] .about-vision, [data-theme="dark"] .about-objectives {
    background: rgba(10, 223, 240, 0.10);
    box-shadow: 0 2px 12px 0 rgba(255,255,255,0.08);
}
[data-theme="dark"] .about-mission h3, [data-theme="dark"] .about-vision h3, [data-theme="dark"] .about-objectives h3 {
    color: #fff !important;
}
[data-theme="light"] .about-mission h3, [data-theme="light"] .about-vision h3, [data-theme="light"] .about-objectives h3 {
    color: #181c22 !important;
}
[data-theme="dark"] .about-mission p, [data-theme="dark"] .about-vision p, [data-theme="dark"] .about-objectives ul {
    color: #d1d5db;
}
[data-theme="light"] .about-mission p, [data-theme="light"] .about-vision p, [data-theme="light"] .about-objectives ul {
    color: #23272f;
}
@media (max-width: 900px) {
    .about-mission-vision {
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-mission, .about-vision, .about-objectives {
        padding: 1rem 0.7rem;
    }
}
/* ======= MISION Y VISION BLOQUES ======= */
.about-mision-vision {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.2em;
    padding-right: 1.2em;
    align-items: stretch;
    max-width: 100%;
}
.about-mision, .about-vision, .about-objetivos {
    flex: 1 1 0;
    background: rgba(10, 92, 133, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0;
}
.about-mision h3, .about-vision h3, .about-objetivos h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.3rem 0;
}
.about-mision p, .about-vision p, .about-objetivos ul {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.about-objetivos ul {
    padding-left: 1.2em;
}
.about-objetivos li {
    margin-bottom: 0.5em;
}
[data-theme="dark"] .about-mision, [data-theme="dark"] .about-vision, [data-theme="dark"] .about-objetivos {
    background: rgba(10, 223, 240, 0.10);
    box-shadow: 0 2px 12px 0 rgba(255,255,255,0.08);
}
[data-theme="dark"] .about-mision h3, [data-theme="dark"] .about-vision h3, [data-theme="dark"] .about-objetivos h3 {
    color: #fff !important;
}
[data-theme="light"] .about-mision h3, [data-theme="light"] .about-vision h3, [data-theme="light"] .about-objetivos h3 {
    color: #181c22 !important;
}
[data-theme="dark"] .about-mision p, [data-theme="dark"] .about-vision p, [data-theme="dark"] .about-objetivos ul {
    color: #d1d5db;
}
[data-theme="light"] .about-mision p, [data-theme="light"] .about-vision p, [data-theme="light"] .about-objetivos ul {
    color: #23272f;
}
@media (max-width: 900px) {
    .about-mision-vision {
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-mision, .about-vision, .about-objetivos {
        padding: 1rem 0.7rem;
    }
}

.about-mision, .about-vision {
    flex: 1 1 0;
    background: rgba(10, 92, 133, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}
.about-mision h3, .about-vision h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 0.3rem 0;
}
.about-mision p, .about-vision p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
[data-theme="dark"] .about-mision, [data-theme="dark"] .about-vision {
    background: rgba(10, 223, 240, 0.10);
    box-shadow: 0 2px 12px 0 rgba(255,255,255,0.08);
}
[data-theme="dark"] .about-mision h3, [data-theme="dark"] .about-vision h3 {
    color: #0ADFF0;
}
[data-theme="dark"] .about-mision p, [data-theme="dark"] .about-vision p {
    color: #d1d5db;
}
@media (max-width: 900px) {
    .about-mision-vision {
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-mision, .about-vision {
        padding: 1rem 0.7rem;
    }
}
/* ======= ABOUT FEATURE SECTION ======= */
.about-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    margin: 2.5rem auto;
    max-width: 900px;
    width: 100%;
    transition: background 0.3s, box-shadow 0.3s;
}
.about-feature-img {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature-content {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
}
.about-feature-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}
.about-feature-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
[data-theme="dark"] .about-feature {
    background: rgba(35, 39, 47, 0.10);
    box-shadow: 0 4px 24px 0 rgba(255,255,255,0.12);
}
[data-theme="dark"] .about-feature-title {
    color: #0ADFF0;
}
[data-theme="dark"] .about-feature-desc {
    color: #d1d5db;
}
[data-theme="light"] .about-feature {
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
}
[data-theme="light"] .about-feature-title {
    color: #0A5C85;
}
[data-theme="light"] .about-feature-desc {
    color: #23272f;
}
@media (max-width: 900px) {
    .about-feature {
        flex-direction: column;
        padding: 1.5rem 0.5rem;
        gap: 1.2rem;
    }
    .about-feature-title {
        font-size: 2rem;
    }
    .about-feature-desc {
        font-size: 1.05rem;
    }
}
/* Leyenda del carrusel alineada a la derecha sobre la imagen */
.carousel-caption.carousel-caption-right {
    position: absolute;
    top: 7.5rem;
    right: 0rem;
    max-width: 40vw;
    background: rgba(10, 92, 133, 0.85);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Exo 2', Arial, sans-serif;
    letter-spacing: 0.04em;
    line-height: 1.15;
    padding: 1.2rem 2.5rem;
    border-radius: 18px 0 0 18px;
    border-right: none !important;
    border-bottom: none !important;
    z-index: 10;
    text-align: right;
    box-shadow: none;
    text-shadow: none;
    border: none;
    transition: background 0.3s;
}

[data-theme="light"] .carousel-caption.carousel-caption-right {
    color: #181c22 !important;
    background: #fff !important;
    border: none !important;
}

@media (max-width: 900px) {
    .carousel-caption.carousel-caption-right {
        font-size: 1.1rem;
        max-width: 80vw;
        top: 1.2rem;
        right: 1.2rem;
        padding: 0.7rem 1.2rem;
        border-radius: 12px;
    }
}
@media (max-width: 600px) {
    .carousel-caption.carousel-caption-right {
        font-size: 0.95rem;
        max-width: 98vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 8px;
    }
}

.main-section > * {
    padding-left: 1.2em;
    padding-right: 1.2em;
}
/* Colores oficiales para los iconos */
.footer-social-icon.whatsapp i {
    color: #25D366;
}
.footer-social-icon.telegram i {
    color: #229ED9;
}

/* Tooltip personalizado debajo solo para WhatsApp y Telegram */
.footer-social-icon.whatsapp[data-tooltip]:hover::after,
.footer-social-icon.telegram[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(6px);
    background: #222;
    color: #fff;
    padding: 0.18em 0.6em;
    border-radius: 6px;
    font-size: 0.95em;
    white-space: nowrap;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
    z-index: 100;
    opacity: 0.98;
    pointer-events: none;
    margin: 0;
}

.carousel-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    padding: 0;
    border: none;
    overflow: hidden;
    position: relative;
    margin-top: -50px;
    box-shadow: none;
}

body.dark-mode .carousel-container {
    border: none;
    box-shadow: none;
}

.carousel-container img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}
.main-section#inicio .eslogan,
.main-section#home .eslogan {
    text-align: center;
    font-style: italic;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    display: block;
}
/* =========================
   HEADER LOGO Y TEXTO
   ========================= */
.logo-col-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo-rif {
    color: #fff !important;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: 0.1rem;
    letter-spacing: 0.02em;
    font-style: italic;
    cursor: default;
}
.header-col-logo {
    display: flex;
.eslogan {
    text-align: center;
    font-style: italic;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    display: block;
}
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
    cursor: default;
}
.logo-img {
    height: 32px;
    width: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    margin-right: 0.1rem;
    display: block;
    cursor: default;
}
.logo-img[src$="menu.png"] {
    transition: transform 0.2s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}
.logo-img[src$="menu.png"]:hover {
    transform: scale(1.18);
}
@media (max-width: 600px) {
    .logo-img {
        height: 24px;
        width: 24px;
        max-width: 24px;
        max-height: 24px;
    }
}
.logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    color: #fff !important;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    line-height: 1.1;
    cursor: default;
}
.header-col:first-child {
    flex: 1 1 0;
    max-width: 22%;
}
.header-col:nth-child(2) {
    flex: 2 1 0;
    max-width: 60%;
}
.header-col:nth-child(3) {
    flex: 1 1 0;
    max-width: 18%;
}
/* =========================
   HEADER LAYOUT
   ========================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background: transparent;
}
.header-row {
    width: 100vw;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
}
.header-row {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    box-sizing: border-box;
    padding: 0 2vw;
    gap: 1rem;
    background: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Si quieres usar la variable CSS, usa: background: color-mix(in srgb, var(--color-primary) 90%, transparent); para navegadores modernos */
}
.header-row::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, #00fff7, #0af, #a0f, #ff00ea, #00fff7 100%);
    background-size: 300% 100%;
    border-radius: 0 0 12px 12px;
    animation: quantum-glow 3s linear infinite;
    box-shadow: 0 2px 16px 0 rgba(0,255,255,0.25), 0 0px 8px 0 #0ff8;
    opacity: 0.95;
    transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .header-row::after {
    background: linear-gradient(90deg, #fffbe6, #b6faff, #e6e6ff, #ffe6fa, #fffbe6 100%);
    box-shadow: 0 2px 16px 0 rgba(255,255,255,0.18), 0 0px 8px 0 #fff8;
}
@keyframes quantum-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.header-col {
    flex: 1 1 0;
    min-width: 0;
    cursor: default;
}
@media (max-width: 900px) {
    .header-row {
        flex-direction: column;
        min-height: unset;
        gap: 0.5rem;
        padding: 0 1vw;
    }
    .header-col {
        width: 100%;
    }
}
.header-col:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}
.theme-toggle {
    margin: 0;
}
.lang-toggle {
    margin-left: 0;
}
/* =========================
     THEME VARIABLES
     ========================= */
:root {
    /* Light Mode */
    --color-bg: #FFFFFF;
    --color-surface: #F4F7FA;
    --color-primary: #0A5C85;
    --color-primary-600: #123A55;
    --color-accent: #0ADFF0;
    --color-accent-soft: #9AFBFA;
    --color-magenta: #C85CFA;
    --text-primary: #1A1A1C;
    --text-secondary: #475569;

    --font-title: 'Orbitron', 'Exo 2', Arial, sans-serif;
    --font-body: 'Inter', 'Roboto', Arial, sans-serif;

    --shadow-elevate: 0 2px 16px 0 rgba(8, 74, 119, 0.10), 0 1.5px 6px 0 rgba(26, 26, 28, 0.08);
    --shadow-neon: 0 0 8px var(--color-accent), 0 0 2px var(--color-accent-soft);

    --border-radius: 12px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}
[data-theme="light"] {
    --color-bg: #f4f7fa;
    --color-surface: #fff;
    --color-primary: #0A5C85;
    --color-primary-600: #b3c6d9;
    --color-accent: #0A5C85;
    --color-accent-soft: #0A5C85;
    --color-magenta: #7b2ff2;
    --text-primary: #181c22;
    --text-secondary: #23272f;
    --header-bg: rgba(255,255,255,0.9);
    --header-text: #181c22;
}
[data-theme="dark"] {
    --color-bg: #181c22;
    --color-surface: #23272f;
    --color-primary: #0A5C85;
    --color-primary-600: #123A55;
    --color-accent: #0ADFF0;
    --color-accent-soft: #9AFBFA;
    --color-magenta: #C85CFA;
    --text-primary: #fff;
    --text-secondary: #d1d5db;
    --header-bg: rgba(10, 92, 133, 0.9);
    --header-text: #fff;
}

/* =========================
     BASE & TYPOGRAPHY
     ========================= */
html {
    font-size: 16px;
    background: var(--color-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--color-bg) url('/images/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    font-family: var(--font-body);
    box-sizing: border-box;
    transition: background var(--transition), color var(--transition);
    /* Fondo responsivo con fallback de color */
    overflow-x: hidden;
    padding-top: 0px; /* Ajuste para que el main quede más arriba, igual al alto real del header */
}

[data-theme="dark"] body,
body.dark-mode {
    background: var(--color-bg) url('/images/bg.png') no-repeat center center fixed;
    background-size: cover;
}
.header-row {
    background: var(--header-bg);
}
.header-col, .logo-text, .logo-rif, .nav-link {
    color: var(--header-text) !important;
}
.nav-link {
    color: var(--header-text) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px var(--color-accent-soft), 0 1px 2px var(--color-primary-600);
    margin-top: 0;
}

p, span, label, input, textarea, select, button {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition), text-shadow var(--transition);
}
a:hover, a:focus {
    color: var(--color-magenta);
    text-shadow: var(--shadow-neon);
    outline: none;
}

/* =========================
     LAYOUT & CONTAINERS
     ========================= */
#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 64px;
}

/* =========================
     IMAGES & MEDIA
     ========================= */
/* =========================
   HEADER LAYOUT
   ========================= */
.header-row {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    box-sizing: border-box;
    padding: 0 2vw;
    gap: 1rem;
    background: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Si quieres usar la variable CSS, usa: background: color-mix(in srgb, var(--color-primary) 90%, transparent); para navegadores modernos */
}
.header-row::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, #00fff7, #0af, #a0f, #ff00ea, #00fff7 100%);
    background-size: 300% 100%;
    border-radius: 0 0 12px 12px;
    animation: quantum-glow 3s linear infinite;
    box-shadow: 0 2px 16px 0 rgba(0,255,255,0.25), 0 0px 8px 0 #0ff8;
    opacity: 0.95;
    transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .header-row::after {
    background: linear-gradient(90deg, #fffbe6, #b6faff, #e6e6ff, #ffe6fa, #fffbe6 100%);
    box-shadow: 0 2px 16px 0 rgba(255,255,255,0.18), 0 0px 8px 0 #fff8;
}
@keyframes quantum-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.header-col {
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    color: var(--text-primary);
    box-shadow: none;
    cursor: default;
    transition: background var(--transition), box-shadow var(--transition), color var(--transition), text-shadow var(--transition);
    outline: none;
    position: relative;
    z-index: 1;
}
button:hover, .btn:hover, button:focus-visible, .btn:focus-visible {
    background: var(--color-primary-600);
    color: var(--color-magenta);
    box-shadow: none;
    text-shadow: 0 0 8px var(--color-accent);
}
button:active, .btn:active {
    background: var(--color-primary-600);
    color: var(--color-accent);
}

/* =========================
     INPUTS & FORMS
     ========================= */
input, textarea, select {
    background: var(--color-surface);
    color: var(--text-primary);
    border: none;
    border-radius: 0;
}
.navbar {
    width: 100%;
    background: var(--color-surface);
    box-shadow: none;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
}
.navbar a, .navbar .nav-link {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 700;
    margin: 0 1rem;
    transition: color var(--transition), text-shadow var(--transition);
}
.navbar a:hover, .navbar .nav-link:hover, .navbar a:focus, .navbar .nav-link:focus {
    color: var(--color-accent);
    text-shadow: var(--shadow-neon);
    outline: none;
}

/* =========================
     CARDS
     ========================= */
.card {
    background: var(--color-surface);
    border-radius: 0;
    box-shadow: none;
    padding: 2rem;
    margin: 1.5rem 0;
    transition: box-shadow var(--transition), border-color var(--transition);
    border: none;
}
.card:hover, .card:focus-within {
    box-shadow: none;
    border-color: transparent;
    z-index: 2;
}
.card-title {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: none;
}
.card-content {
    color: var(--text-secondary);
    font-family: var(--font-body);
}

/* =========================
     TABLES
     ========================= */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    color: var(--text-primary);
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}
th, td {
    padding: 1em;
    text-align: left;
    border-bottom: none;
}
th {
    background: var(--color-primary);
    color: var(--color-accent-soft);
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.03em;
}
tr:hover {
    background: var(--color-accent-soft);
    color: var(--color-magenta);
    transition: background var(--transition), color var(--transition);
}

/* =========================
     UTILITIES & EFFECTS
     ========================= */
.shadow {
    box-shadow: none !important;
}
.neon {
    box-shadow: none !important;
}
.text-accent {
    color: var(--color-accent) !important;
}
.text-magenta {
    color: var(--color-magenta) !important;
}
.bg-primary {
    background: var(--color-primary) !important;
    color: var(--text-primary) !important;
}
.bg-surface {
    background: var(--color-surface) !important;
}

/* =========================
     RESPONSIVE DESIGN
     ========================= */
@media (max-width: 1200px) {
    html { font-size: 15px; }
    .container, .main-content { padding: 1.5rem 0.5rem; }
}
@media (max-width: 900px) {
    html { font-size: 14px; }
    .navbar { flex-direction: column; padding: 1rem; }
    .container, .main-content { padding: 1rem 0.25rem; }
}
@media (max-width: 600px) {
    html { font-size: 13px; }
    #root { padding: 10px; }
    .navbar { flex-direction: column; padding: 0.5rem; }
    .container, .main-content { padding: 0.5rem 0.1rem; }
    .card { padding: 1rem; }
}
@media (max-width: 900px) and (orientation: landscape) {
    #root { flex-direction: row; }
}

/* =========================
     FOCUS & ACCESSIBILITY
     ========================= */
:focus-visible {
    outline: 2.5px solid var(--color-accent);
    outline-offset: 2px;
    box-shadow: none;
}

/* =========================
     SELECCIÓN DE TEXTO
     ========================= */
::selection {
    background: var(--color-accent-soft);
    color: var(--color-bg);
}

/* =========================
     FIN DE HOJA DE ESTILOS
     ========================= */
/* Menú horizontal header */
.main-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.nav-list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--color-accent);
}

/* Selector de modo claro/oscuro bonito */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.toggle-theme-input {
    display: none;
}
.toggle-theme-label {
    display: flex;
    align-items: center;
    position: relative;
    width: 52px;
    height: 28px;
    background: #222;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    padding: 0;
    overflow: hidden;
}
.toggle-theme-label .toggle-sun,
.toggle-theme-label .toggle-moon {
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: opacity 0.2s;
    pointer-events: none;
    opacity: 1;
}
.toggle-theme-label .toggle-sun {
    left: 7px;
    color: #ffd700;
}
.toggle-theme-label .toggle-moon {
    right: 7px;
    color: #b3c6ff;
}
.toggle-theme-label .toggle-slider {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.3s, background 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    z-index: 2;
}
.toggle-theme-input:checked + .toggle-theme-label .toggle-slider {
    left: 26px;
    background: #222;
}

@media (max-width: 600px) {
    .toggle-theme-label {
        width: 40px;
        height: 22px;
    }
    .toggle-theme-label .toggle-slider {
        width: 15px;
        height: 15px;
        left: 3px;
    }
    .toggle-theme-input:checked + .toggle-theme-label .toggle-slider {
        left: 18px;
    }
    .toggle-theme-label .toggle-sun {
        left: 4px;
    }
    .toggle-theme-label .toggle-moon {
        right: 4px;
    }
}

/* Mostrar solo el icono correspondiente al tema en el switch */
/* Eliminar reglas de visibilidad por data-theme para los iconos del switch */
/* Selector de idioma con banderas */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}
.lang-btn {
    background: rgba(0,0,0,0.00);
    border: 2.5px solid transparent;
    box-sizing: border-box;
    min-width: 32px;
    min-height: 32px;
}
.lang-btn:focus,
.lang-btn:hover {
    background: rgba(10,92,133,0.12);
}
.lang-flag {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}
@media (max-width: 600px) {
    .lang-flag {
        width: 20px;
        height: 20px;
    }
}
body, header, nav, main, footer, .logo-text, .logo-rif, .nav-link, .header-col {
    color: var(--text-primary) !important;
}
[data-theme="light"] body, [data-theme="light"] header, [data-theme="light"] nav, [data-theme="light"] main, [data-theme="light"] footer, [data-theme="light"] .logo-text, [data-theme="light"] .logo-rif, [data-theme="light"] .nav-link, [data-theme="light"] .header-col {
    color: #181c22 !important;
}
[data-theme="dark"] body, [data-theme="dark"] header, [data-theme="dark"] nav, [data-theme="dark"] main, [data-theme="dark"] footer, [data-theme="dark"] .logo-text, [data-theme="dark"] .logo-rif, [data-theme="dark"] .nav-link, [data-theme="dark"] .header-col {
    color: #fff !important;
}

/* Efecto visual para idioma seleccionado, tamaño fijo */
.lang-btn {
    background: rgba(0,0,0,0.00);
    border: 2.5px solid transparent;
    box-sizing: border-box;
    min-width: 32px;
    min-height: 32px;
}
.lang-btn.selected {
    border-color: var(--color-accent);
    background: rgba(10, 223, 240, 0.18);
    box-shadow: 0 0 0 2px var(--header-bg);
}
[data-theme="light"] .lang-btn.selected {
    border-color: var(--color-primary);
    background: rgba(10, 92, 133, 0.10);
    box-shadow: 0 0 0 2px #fff;
}
[data-theme="dark"] .lang-btn.selected {
    border-color: var(--color-accent);
    background: rgba(10, 223, 240, 0.18);
    box-shadow: 0 0 0 2px rgba(10, 92, 133, 0.9);
}
@media (max-width: 600px) {
    .lang-btn {
        min-width: 24px;
        min-height: 24px;
    }
}

/* Contenedor principal y secciones limpias */
.main-container {
    width: 90vw;
    max-width: 1200px;
    margin: 2% auto 0 auto;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    background: rgba(10, 92, 133, 0.95);
    border-radius: 18px;
    transition: background 0.3s;
    border: 3px solid rgba(0,0,0,0.8);
    box-shadow: none;
}
body.dark-mode .main-container {
    border: 3px solid #fff;
    box-shadow: none;
}
[data-theme="light"] .main-container {
    background: rgba(255,255,255,0.95);
}
@media (max-width: 1200px) {
    .main-container {
        max-width: 98vw;
        width: 98vw;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }
}
@media (max-width: 900px) {
    .main-container {
        max-width: 100vw;
        width: 100vw;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
        border-radius: 0;
    }
    /* Padding lateral para todas las secciones menos la de inicio */
    .main-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    @media (max-width: 1200px) {
        .main-section {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }
    }
    @media (max-width: 900px) {
        .main-section {
            padding-left: 0.2rem;
            padding-right: 0.2rem;
        }
    }
    .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 0 0.5rem;
    }
    .main-nav .nav-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }
}
@media (max-width: 600px) {
    .main-container {
        padding: 0.5rem 0.1rem 0.2rem 0.1rem;
    }
    .header-row {
        font-size: 0.95rem;
        gap: 0.2rem;
    }
    .main-nav .nav-list {
        font-size: 0.95rem;
        gap: 0.2rem;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}
html {
    scroll-padding-top: 120px;
}
.header-row {
    position: relative;
}
.header-row::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, #00fff7, #0af, #a0f, #ff00ea, #00fff7 100%);
    background-size: 300% 100%;
    border-radius: 0 0 12px 12px;
    animation: quantum-glow 3s linear infinite;
    box-shadow: 0 2px 16px 0 rgba(0,255,255,0.25), 0 0px 8px 0 #0ff8;
    opacity: 0.95;
    transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .header-row::after {
    background: linear-gradient(90deg, #fffbe6, #b6faff, #e6e6ff, #ffe6fa, #fffbe6 100%);
    box-shadow: 0 2px 16px 0 rgba(255,255,255,0.18), 0 0px 8px 0 #fff8;
}
@keyframes quantum-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
/* Títulos de sección en cursiva, sin sombra ni borde */
.main-section h2, .main-section h1, .main-section h3 {
    font-style: italic;
    box-shadow: none;
    border: none;
    text-shadow: none;
    text-align: center;
}
/* Secciones con altura automática */
.main-section {
    min-height: unset;
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
}
/* =========================
     FOOTER
     ========================= */
footer {
    width: 100vw;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    color: #fff;
    margin-top: 2rem;
    padding: 2rem 0 1rem 0;
    box-sizing: border-box;
    transition: background 0.3s, color 0.3s;
    position: relative;
}
[data-theme="light"] footer {
    background: rgba(255,255,255,0.9);
    color: #111;
}
footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, #00fff7, #0af, #a0f, #ff00ea, #00fff7 100%);
    background-size: 300% 100%;
    border-radius: 12px 12px 0 0;
    animation: quantum-glow 3s linear infinite;
    box-shadow: 0 -2px 16px 0 rgba(0,255,255,0.25), 0 0px 8px 0 #0ff8;
    opacity: 0.95;
    transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="light"] footer::before {
    background: linear-gradient(90deg, #fffbe6, #b6faff, #e6e6ff, #ffe6fa, #fffbe6 100%);
    box-shadow: 0 -2px 16px 0 rgba(255,255,255,0.18), 0 0px 8px 0 #fff8;
}
@keyframes quantum-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.footer-container {
    width: 90vw;
    max-width: 1200px;
    min-height: 45vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin: 0 auto;
}
.footer-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 180px;
    align-items: flex-start;
    text-align: left;
    height: 100%;
/* Imagen robot footer ajustada al alto del footer */
.footer-image-robot {
    position: absolute !important;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    max-width: 40vw;
    object-fit: contain;
    pointer-events: none;
    z-index: 9999;
}
}
.footer-col h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-weight: bold;
    box-shadow: none;
    border: none;
    text-shadow: none;
}
.footer-col#footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}
.footer-col#footer-menu ul li {
    font-family: var(--font-menu, 'Segoe UI', Arial, sans-serif);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
}
.footer-col#footer-menu ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.1rem 0.2rem;
    border-radius: 4px;
    display: block;
    text-align: left;
}
.footer-col#footer-menu ul li a:hover {
    color: #00fff7;
    background: rgba(182,250,255,0.18);
}
[data-theme="light"] .footer-col#footer-menu ul li a:hover {
    color: #0a5c85;
    background: rgba(182,250,255,0.32);
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}
.footer-contact-list li {
    width: 100%;
}
.footer-contact-list li a {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: inherit;
    text-decoration: none;
    font-family: var(--font-menu, 'Segoe UI', Arial, sans-serif);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.1rem 0.2rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.footer-contact-list li a i {
    min-width: 1.2em;
    text-align: center;
}
.footer-contact-list li a:hover {
    color: #00fff7;
    background: rgba(10,92,133,0.08);
}
[data-theme="light"] .footer-contact-list li a:hover {
    color: #0a5c85;
    background: rgba(182,250,255,0.32);
}
@media (max-width: 900px) {
    .footer-contact-list {
        align-items: center;
    }
    .footer-contact-list li a {
        justify-content: center;
        text-align: center;
    }
}
.footer-copyright {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 0.85rem;
    color: #bbb;
    margin-top: 1.2rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
    font-weight: 400;
    align-self: center;
    left: unset;
    position: static;
}
[data-theme="light"] .footer-copyright {
    color: #111;
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        width: 98vw;
        align-items: center;
    }
    .footer-col {
        width: 100%;
        min-width: 0;
        height: auto;
    }
    .footer-image-robot {
        position: static !important;
        width: 100%;
        max-width: 100vw;
        height: auto;
        margin: 0 auto 1rem auto;
        display: block;
    }
    footer {
        padding: 1.2rem 0 0.5rem 0;
    }
    .footer-container {
        padding: 0 0.2rem;
    }
}
.footer-social-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}
#footer-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    background: transparent;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
}
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0.7rem 0 0 0;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
}
.footer-social-list-vertical {
    list-style: none;
    padding: 0;
    margin: 0.7rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-social-list-vertical li {
    display: flex;
}
.footer-social-icon.instagram i {
    color: #E1306C;
}
.footer-social-icon.tiktok i {
    color: #25F4EE;
}
.footer-social-icon.facebook i {
    color: #1877F3;
}
.footer-social-icon.youtube i {
    color: #FF0000;
}
.footer-social-icon[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 0.45em 1em;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 2147483647;
    opacity: 0.97;
    pointer-events: none;
    transition: opacity 0.18s;
    letter-spacing: 0.03em;
}
.footer-social-icon i {
    font-size: 2rem;
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 8px;
}
@media (max-width: 600px) {
    .footer-social-list {
        gap: 0.7rem;
    }
    .footer-social-list-vertical {
        gap: 0.7rem;
    }
    .footer-social-icon i {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
    }
}
.footer-col#footer-redes, .footer-col#footer-social {
    position: relative !important;
    overflow: visible !important;
}
.footer-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 9999;
}
.footer-image-robot {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 100vw;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.18));
    transition: transform 0.18s;
    pointer-events: none;
    z-index: -1;
}

/* --- Contacto Section Styles (simple, sin fondo ni efectos) --- */
.contacto-row {
    display: flex;
    flex-wrap: wrap;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 32px 0 0 0;
    min-height: 420px;
    overflow: visible;
}
.contacto-col {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: none;
}
.contacto-img-col {
    min-height: 320px;
    justify-content: center;
    background: none;
}
.contacto-img-efecto {
    width: 80%;
    max-width: 340px;
    border-radius: 24px;
    box-shadow: none;
    border: none;
    animation: none;
}
.contacto-form-col {
    min-height: 320px;
    justify-content: flex-start;
    background: none;
    border-left: none;
}
.contacto-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacto-form label {
    font-weight: 600;
    color: #16213a;
    margin-bottom: 4px;
    font-size: 1.05em;
}
.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid #3ad1ff;
    background: #f5faff;
    font-size: 1em;
    color: #16213a;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: #16213a;
    box-shadow: 0 0 0 2px #3ad1ff44;
}
.contacto-form button {
    background: linear-gradient(90deg, #3ad1ff 0%, #16213a 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.08em;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 rgba(58,209,255,0.10);
    transition: background 0.3s, box-shadow 0.3s;
}
.contacto-form button:hover {
    background: linear-gradient(90deg, #16213a 0%, #3ad1ff 100%);
    box-shadow: 0 4px 24px 0 #3ad1ff44;
}
@media (max-width: 900px) {
    .contacto-row { flex-direction: column; }
    .contacto-col { padding: 24px 12px; }
    .contacto-img-efecto { width: 100%; max-width: 320px; }
    .contacto-form { max-width: 98vw; }
    .contacto-form-col { border-left: none; }
}
body.dark-mode .contacto-form label {
    color: #3ad1ff;
}
body.dark-mode .contacto-form input,
body.dark-mode .contacto-form select,
body.dark-mode .contacto-form textarea {
    background: #1a2746;
    color: #e0e6ef;
    border: 1.5px solid #3ad1ff;
}
body.dark-mode .contacto-form input:focus,
body.dark-mode .contacto-form select:focus,
body.dark-mode .contacto-form textarea:focus {
    border-color: #00eaff;
    box-shadow: 0 0 0 2px #00eaff44;
}
body.dark-mode .contacto-form button {
    background: linear-gradient(90deg, #00eaff 0%, #16213a 100%);
    color: #16213a;
}
body.dark-mode .contacto-form button:hover {
    background: linear-gradient(90deg, #16213a 0%, #00eaff 100%);
    color: #fff;
}
