/* ==========================================================================
   TEMA CLARO - VEKTOR LABS (ESTILO GLASSMORPHISM)
   ========================================================================== */

:root {
    /* Paleta de colores Light */
    --bg-start: #f0f4fc;
    --bg-mid: #f6f9fe;
    --bg-end: #e8effa;
    --surface: rgba(255, 255, 255, 0.85);
    --surface-strong: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.6);
    --line: rgba(37, 99, 235, 0.15);
    --line-strong: rgba(37, 99, 235, 0.3);
    --text: #1e293b; /* Texto oscuro para títulos */
    --muted: #64748b; /* Gris azulado para párrafos */
    --muted-soft: #94a3b8;
    --blue: #2563eb;
    --purple: #7c3aed;
    --pink: #db2777;
    --glow-blue: rgba(37, 99, 235, 0.15);
    --glow-pink: rgba(219, 39, 119, 0.15);
    --shadow: 0 15px 35px rgba(37, 99, 235, 0.08); /* Sombra suave azulada */
    --shadow-hover: 0 22px 45px rgba(37, 99, 235, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "DM Sans", sans-serif;
    color: var(--muted);
    background-color: #f4f7fc;
    /* Fondo de ondas/brillos estilo imagen */
    background-image:
        radial-gradient(ellipse at 15% 20%, rgba(188, 212, 255, 0.6) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 65%, rgba(199, 209, 255, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(220, 240, 255, 0.5) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Ocultamos los fondos oscuros y de estrellas */
body::before,
body::after,
#stars {
    display: none;
}

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

a {
    color: inherit;
}

.inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ================= NAV ================= */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 18px 0;
    transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    border-bottom: 1px solid transparent;
}

#nav.is-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.brand {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 64px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.22s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    font-weight: 700;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    padding: 140px 0 60px;
}

.hero-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 80px;
    width: min(1120px, calc(100% - 48px));
    height: 420px;
    transform: translateX(-50%);
    border-radius: 42px;
    background: radial-gradient(circle at 50% 50%, rgba(200, 220, 255, 0.8), transparent 60%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.hero-copy {
    padding: 36px 0 24px;
}

.hero-title {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text);
}

.hero-title span {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3b82f6;
    display: block;
}

.hero-subtitle {
    max-width: 460px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    padding: 13px 26px;
    border-radius: 999px; /* Botones ovalados como en la imagen */
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    color: var(--text);
    background: #fff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: var(--blue);
}

.hero-media {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stage {
    position: relative;
    width: min(100%, 720px);
}

.hero-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80%;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
    filter: blur(10px);
    z-index: -1;
}

.hero-stage img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================= CINTA DE SERVICIOS (TICKER) ================= */
.ticker-section {
    position: relative;
    z-index: 2;
    padding: 10px 0 18px;
}

.ticker-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.ticker-shell::before,
.ticker-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 86px;
    z-index: 1;
    pointer-events: none;
}

.ticker-shell::before {
    left: 0;
    background: linear-gradient(90deg, #f4f7fc, transparent);
}

.ticker-shell::after {
    right: 0;
    background: linear-gradient(270deg, #f4f7fc, transparent);
}

.ticker-marquee {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll 22s linear infinite;
}

.ticker-shell:hover .ticker-marquee {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--blue);
    font-size: 0.7rem;
    opacity: 0.8;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================= SECCIONES GENERALES ================= */
.section-block {
    position: relative;
    padding: 80px 0;
}

.compact-block {
    padding-top: 54px;
    padding-bottom: 38px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
    flex-direction: column; /* Centrado como en la imagen */
}

.section-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading::after {
    content: "What We Offer"; /* Subtítulo de la imagen */
    display: block;
    color: var(--muted);
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-top: 5px;
}

.section-line {
    display: none; /* Ocultamos las líneas laterales del diseño oscuro */
}

/* ================= TARJETAS (SERVICIOS, PORTAFOLIO, ETC) ================= */
.services-grid,
.portfolio-grid,
.testimonials-grid {
    display: grid;
    gap: 24px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 columnas en la imagen */
    margin-top: 30px;
}

.service-card {
    position: relative;
    min-height: 228px;
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
    text-decoration: none;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.service-art {
    position: relative;
    height: 114px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-art img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 100%;
    object-fit: contain;
}

.service-art i {
    font-size: 3rem;
    color: var(--blue);
}

.service-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

.service-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Texto de Learn More estilo imagen */
.service-card p::after {
    content: "\A Learn More >>";
    white-space: pre;
    display: block;
    margin-top: 15px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ================= WHY CHOOSE US ================= */
.why-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 0;
    margin-bottom: 0;
}

.why-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
}

.why-item i {
    font-size: 1rem;
    color: var(--blue);
}

/* ================= PORTAFOLIO ================= */
.portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: var(--surface-strong);
    min-height: 220px;
    box-shadow: var(--shadow);
}

.portfolio-thumb {
    position: absolute;
    inset: 0;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: relative;
    z-index: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 16px;
    /* Efecto Glassmorphism blanco desde abajo */
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 75%);
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
}

.portfolio-overlay h3 {
    margin: 0 0 14px;
    max-width: 180px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

.portfolio-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* ================= TESTIMONIOS ================= */
.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 128px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-copy h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.testimonial-role {
    display: block;
    margin-top: 2px;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
    font-style: italic;
}

/* ================= CTA (LLAMADA A LA ACCIÓN) ================= */
.cta-block {
    padding-top: 40px;
    padding-bottom: 80px;
}

.cta-panel {
    position: relative;
    padding: 60px 30px;
    border-radius: 28px;
    border: 1px solid #ffffff;
    background: var(--surface-strong);
    text-align: center;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.08);
}

.cta-panel h2 {
    max-width: 760px;
    margin: 0 auto 24px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 16px 30px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* ================= CONTACTO Y FORMULARIOS ================= */
.contact-hero-copy h1 {
    color: var(--text);
}

.contact-hero-copy p {
    color: var(--muted);
}

.contact-spotlight-card,
.contact-panel,
.info-card,
.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    border-radius: 20px;
}

.contact-panel-label,
.contact-spotlight-card span {
    color: var(--blue);
}

.contact-spotlight-card strong,
.contact-panel h2,
.info-card h3 {
    color: var(--text);
}

.contact-panel p,
.contact-spotlight-card p {
    color: var(--muted);
}

.contact-input {
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--text);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-input::placeholder {
    color: #94a3b8;
}

.contact-input:focus {
    outline: none;
    border-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-submit, .panel-action {
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.panel-copy {
    color: var(--text);
    background: #f8fafc;
    border: 1px solid #cbd5e1;
}

.panel-copy:hover {
    background: #f1f5f9;
}

/* ================= FOOTER ================= */
.site-footer {
    position: relative;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
}

/* ================= ANIMACIONES (MANTENIDAS) ================= */
[data-r] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-r].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-d="1"] { transition-delay: 0.08s; }
[data-d="2"] { transition-delay: 0.16s; }
[data-d="3"] { transition-delay: 0.24s; }
[data-d="4"] { transition-delay: 0.32s; }

/* ================= MEDIA QUERIES (ADAPTATIVO MANTENIDO) ================= */
@media (max-width: 1100px) {
    .hero-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-hero { grid-template-columns: 1fr; }
    .contact-hero-side { justify-content: flex-start; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-media { min-height: 340px; }
}

@media (max-width: 780px) {
    .inner { width: min(100%, calc(100% - 28px)); }
    .nav-links { display: none; }
    .hero-section { padding-top: 120px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subtitle, .hero-actions { justify-content: center; margin-left: auto; margin-right: auto; }
    .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .cta-panel { padding: 40px 20px; }
}

@media (max-width: 560px) {
    .hero-title { font-size: 2.1rem; }
    .cta-button { min-width: 200px; width: 100%; }
    .btn { width: 100%; }
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS: PÁGINA DE CONTACTO (TEMA CLARO)
   ========================================================================== */

.contact-page-main {
    padding-top: 28px;
}

.page-hero {
    position: relative;
    padding: 140px 0 60px;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: center;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.contact-hero-side {
    display: flex;
    justify-content: center;
}

.contact-spotlight {
    position: relative;
    width: min(100%, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tarjeta Principal de Contacto (Direct Channel) */
.contact-spotlight-card {
    position: relative;
    z-index: 1;
    width: min(100%, 350px);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: var(--shadow);
    text-align: left;
}

.contact-spotlight-card span {
    display: block;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-spotlight-card strong {
    display: block;
    margin-top: 14px;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.35;
    word-break: break-all;
}

.contact-spotlight-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Grillas de Contacto (Email y Teléfono) */
.contact-info-block {
    padding-top: 30px;
}

.contact-quick-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

/* Paneles de contacto (Tarjetas Blancas) */
.contact-panel,
.info-card {
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-panel:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-panel-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue);
    font-size: 1.2rem;
}

.contact-panel-label {
    display: block;
    margin-top: 24px;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-panel h2 {
    margin: 12px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--text);
}

.contact-panel p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Botones dentro de las tarjetas */
.panel-action,
.panel-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 20px;
    border-radius: 999px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
}

.panel-action {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.panel-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.panel-copy {
    color: var(--text);
    background: #f8fafc;
    border: 1px solid #cbd5e1;
}

.panel-copy:hover {
    background: #e2e8f0;
    color: var(--blue);
}

/* Listas de la sección "Qué enviarnos" */
.info-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 20px;
    font-family: "Manrope", sans-serif;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.info-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

/* Etiquetas (Pills) de la última sección */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Botones del final (Llamada a la acción) */
.contact-page-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}