/* ======== COLORES DEL LOGO ======== */
:root {
    --azul-sbs: #003366;
    --rojo-sbs: #cc0000;
    --verde-sbs: #009933;
}

/* ======== CONFIG GLOBAL ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "gf_Playfair_Display variant1", Tofu;
}

body {
    font-family: "gf_Playfair_Display variant1", Tofu;
}

/* ========================================
   NAVBAR
========================================= */
.navbar {
    width: 100%;
    padding: 15px 45px;
    background: linear-gradient(
        90deg,  
              /* azul MÁS CLARO en el logo */
        #73AFEB 25%,       /* transición suave */
        #003366 100%
    );
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}


/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    letter-spacing: 0.5px;
}

.logo img {
    height: 80px;
    transition: transform .3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* ===== NAV LINKS ===== */
.nav-links a {
    margin-left: 22px;
    text-decoration: none;
    color: #eaf4ff;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.18);
    color: white;
    transform: translateY(-2px);
}

.nav-links .active {
    background: var(--verde-sbs);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ===== HAMBURGUESA ===== */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}

/* Animación al abrir */
.menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 900px) {

    .menu-btn { display: flex; }

    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        width: 100%;
        background: var(--azul-sbs);
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        animation: fadeMenu .3s ease;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        margin: 10px 0;
    }
}

@keyframes fadeMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   HERO – COLORES DEL LOGO INTEGRADOS
========================================= */
.hero {
    width: 100%;
    padding: 90px 8%;
    background: linear-gradient(135deg,
        #003366 40%,
        #73AFEB 100%
         
    );
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Efecto glass */
.hero-content {
    max-width: 900px;
    background: rgba(255,255,255,0.20);
    padding: 45px 35px;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);
    animation: fadeUp .9s ease forwards;
}

/* TÍTULO */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

/* Línea verde profesional */
.hero-content h1::after {
    content: "";
    width: 120px;
    height: 4px;
    background: var(--verde-sbs);
    display: block;
    margin: 15px auto;
    border-radius: 50px;
}

/* TEXTO */
.hero-content p {
    font-size: 1.25rem;
    color: #eef6ff;
    margin-bottom: 35px;
    letter-spacing: .3px;
}

/* VIDEO PRINCIPAL GRANDE */
.video-box {
    width: 100%;
    max-width: 900px;
    border-radius: 22px;
    overflow: hidden;
    margin: 0 auto 30px auto;
    border: 4px solid var(--verde-sbs);
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

/* BOTÓN */
.btn-primary {
    display: inline-block;
    background: var(--verde-sbs);
    color: white;
    padding: 16px 38px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 7px 20px rgba(0, 128, 0, 0.35);
}

.btn-primary:hover {
    background: #007a29;
    transform: translateY(-4px);
}

/* Animación subir */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .video-box {
        max-width: 100%;
    }
}

/* ========================================
   FOOTER
========================================= */
.footer {
    background: var(--azul-sbs);
    padding: 40px 20px;
    color: white;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-grid h4 {
    color: var(--verde-sbs);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.copy {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
}











/* ========================================
   SECCIÓN SERVICIOS – REDISEÑO CORPORATIVO
========================================= */

.servicios { 
  background: linear-gradient(180deg, #eef6ff, #dcecff);
  padding: 80px 0;

}

.servicios-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* ===== COLUMNA TEXTO ===== */
.servicios-texto h2 {
    font-size: 2.8rem;
    color: var(--azul-sbs);
    margin-bottom: 45px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Item de servicio */
.servicio-item {
    display: flex;
    gap: 20px;
    padding: 22px 24px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.servicio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Iconos */
.icono {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--azul-sbs),
        #1a5a8a
    );
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Títulos */
.servicio-item h3 {
    font-size: 1.3rem;
    color: var(--azul-sbs);
    margin-bottom: 6px;
    font-weight: 600;
}

/* Texto */
.servicio-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* ===== COLUMNA IMÁGENES ===== */
.servicios-imagenes {
    display: flex;
    flex-direction: column;
    gap: 26px;
    
}

.servicios-imagenes img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    transition: transform .4s ease;
}

.servicios-imagenes img:hover {
    transform: scale(1.025);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .servicios-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .servicios-imagenes {
        display: none;
    }

    .servicios-texto h2 {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .servicios {
        padding: 70px 6%;
    }

    .servicios-texto h2 {
        font-size: 2.2rem;
    }

    .servicio-item {
        padding: 18px;
    }
}
/* ===== ICONOS PROFESIONALES (SVG) ===== */
.icono {
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--azul-sbs);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* SVG común */
.icono::before {
    content: "";
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Contabilidad */
.icono.contabilidad::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3h18v18H3z'/%3E%3Cpath d='M7 7h10v2H7zm0 4h10v2H7zm0 4h6v2H7z' fill='%23003366'/%3E%3C/svg%3E");
}

/* Recursos Humanos */
.icono.rrhh::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zM4 20a8 8 0 0 1 16 0z'/%3E%3C/svg%3E");
}

/* Facturación */
.icono.facturacion::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6z'/%3E%3Cpath d='M9 13h6v2H9zm0 4h4v2H9z' fill='%23003366'/%3E%3C/svg%3E");
}

/* Nómina */
.icono.nomina::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2z'/%3E%3Cpath d='M9 12h6v2H9z' fill='%23003366'/%3E%3C/svg%3E");
}









/* CONTENEDOR GENERAL */
.news-slider {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    font-family: "gf_Playfair_Display variant1", Tofu;
    animation-play-state: paused;
    
}

/* SLIDE */
.news-slide {
    position: relative;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* OVERLAY OSCURO */
.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.35)
    );
}

/* CONTENIDO */
.news-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 30px;
}

/* TITULO */
.news-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
}

/* DESCRIPCIÓN */
.news-content p {
    font-size: 1rem;
    margin-bottom: 22px;
    opacity: 0.95;
}

/* BOTÓN */
.news-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #1e90ff;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.news-btn:hover {
    background: #0a3d62;
}

/* FLECHAS */
.news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    z-index: 3;
    transition: all .3s ease;
}

.news-arrow:hover {
    background: #1e90ff;
    color: #fff;
}

.news-arrow.left {
    left: 15px;
}

.news-arrow.right {
    right: 15px;
}

/* INDICADORES */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
}

.dot.active {
    background: #1e90ff;
}
@media (max-width: 768px) {
    .news-slide {
        height: 260px;
    }

    .news-content h3 {
        font-size: 1.2rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }
}















/*Recursos Humanos*/

/* =========================
   RRHH SECTION
========================= */
.rrhh-section {
  padding: 90px 6%;
  background: linear-gradient(135deg, #0f2a44, #0b1e33);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.rrhh-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rrhh-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  color: #cfd8e3;
  font-size: 1.05rem;
}

/* =========================
   SLIDER
========================= */
.rrhh-slider {
  overflow: hidden;
  position: relative;
}

.rrhh-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
}

/* =========================
   CARD
========================= */
.rrhh-card {
  min-width: calc(33.333% - 16px);
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* OVERLAY para que el texto NO se pierda */
.rrhh-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.25),
    rgba(0,0,0,.05)
  );
  z-index: 0;
}

/* CONTENIDO */
.rrhh-card h3,
.rrhh-card p {
  position: relative;
  z-index: 1;
}

.rrhh-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.rrhh-card p {
  font-size: 0.95rem;
  color: #e4ebf3;
  line-height: 1.5;
}

/* =========================
   HOVER
========================= */
.rrhh-card:hover {
  transform: translateY(-8px);
  transition: transform .3s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .rrhh-card {
    min-width: 100%;
    height: 330px;
  }

  .rrhh-title {
    font-size: 2rem;
  }
}
.rrhh-slider {
  position: relative;
  overflow: hidden;
}

.rrhh-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  transition: background .3s;
}

.rrhh-btn:hover {
  background: rgba(0,0,0,.8);
}

.rrhh-btn.prev { left: 10px; }
.rrhh-btn.next { right: 10px; }

/* Mobile */
@media (max-width: 991px) {
  .rrhh-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}



































/* =========================
   CONTABILIDAD
========================= */
.conta-section {
  background-color: #f4f9ff;
  background-image: radial-gradient(
    circle at top left,
    rgba(30, 136, 229, 0.08),
    transparent 60%
  );
  padding: 80px 0;
}

.conta-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.conta-header h2 {
    font-size: 2.4rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
}

.conta-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* GRID */
.conta-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* TARJETAS */
.conta-card {
    position: relative;
    height: 260px;
    border-radius: 18px; /* menos redondeado */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.2);
    transition: transform .35s ease, box-shadow .35s ease;
}

.conta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.3);
}

/* OVERLAY MÁS CLARO */

.conta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* negro suave */
  border-radius: 20px;
  z-index: 1;
  color: white;
}
.conta-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;

  color: #ffffff;
  font-weight: 600;
}



/* TEXTO */

.conta-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    
}

.conta-content p {
    font-size: 1.0rem;
    line-height: 1.45;
    
}

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

@media (max-width: 600px) {
    .conta-grid {
        grid-template-columns: 1fr;
    }

    .conta-card {
        height: 230px;
    }

    .conta-header h2 {
        font-size: 2rem;
    }
}


























/* ===============================
   SECCIÓN FACTURACIÓN
================================ */
.facturacion-section {
    padding: 90px 5%;
    background: #f4f7fb;
}

/* CONTENEDOR GENERAL */
.facturacion-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* ===============================
   TEXTO IZQUIERDO
================================ */
.facturacion-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.facturacion-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    max-width: 500px;
}

.facturacion-checks {
    list-style: none;
}

.facturacion-checks li {
    font-size: 1rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 12px;
}

/* ===============================
   GRID DE TARJETAS
================================ */
.facturacion-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* La tarjeta 5 ocupa todo el ancho */
.facturacion-cards .card-5 {
    grid-column: span 2;
}

/* ===============================
   TARJETAS
================================ */
.fact-card {
    position: relative;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Overlay oscuro */
.fact-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.65);
    z-index: 1;
}

/* CONTENIDO */
.fact-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.fact-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.fact-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablets */
@media (max-width: 992px) {
    .facturacion-section {
        grid-template-columns: 1fr;
    }

    .facturacion-header {
        text-align: left;
    }

    .facturacion-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móviles */
@media (max-width: 600px) {
    .facturacion-section {
        padding: 70px 20px;
    }

    .facturacion-header h2 {
        font-size: 2rem;
    }

    .facturacion-cards {
        grid-template-columns: 1fr;
    }

    /* En móvil TODAS las tarjetas ocupan 100% */
    .facturacion-cards .card-5 {
        grid-column: span 1;
    }

    .fact-card {
        height: 200px;
    }
}


















/* =========================
   QUIÉNES SOMOS
========================= */
.about-section {
    padding: 100px 5%;
    background: linear-gradient(
        135deg,
        #0f3f66,
        #1b5f8f
    );
    color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}

/* TÍTULO */
.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* TEXTO INTRO */
.about-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 620px;
    color: #e4edf4;
}

/* MISIÓN / VISIÓN */
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

.about-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d6e3ee;
}

/* IMAGEN */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* DETALLE SUTIL (opcional pero recomendado) */
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(
        to bottom right,
        rgba(15, 63, 102, 0.15),
        rgba(15, 63, 102, 0.45)
    );
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

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

    .about-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }
}












/* ===============================
   CONTACTO - SBS MIPYMES
================================ */

* {
    box-sizing: border-box;
    font-family: "gf_Playfair_Display variant1", Tofu;
}

/* HEADER CONTACTO */
.contacto-header {
     background: linear-gradient(90deg, #92c0e9, #2b77aa);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.contacto-header-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 25px;
}

.contacto-header-link img {
    height: 92px;
}

/* FONDO */
.contacto-page {
    min-height: calc(100vh - 80px);
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 55%),
        linear-gradient(180deg, #78addc, #0d5c91, #062f4d);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* CARD */
.contacto-card {
    background: #fff;
    border-radius: 22px;
    padding: 42px 36px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.contacto-card h2 {
    text-align: center;
    font-size: 28px;
    color: #083f66;
}

.contacto-card p {
    text-align: center;
    color: #5f6f7f;
    margin-bottom: 26px;
}

/* INPUTS */
.contacto-card input,
.contacto-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d0d7de;
    margin-bottom: 14px;
    font-size: 14px;
}

.contacto-card input:focus,
.contacto-card textarea:focus {
    outline: none;
    border-color: #0d5c91;
    box-shadow: 0 0 0 3px rgba(13,92,145,0.15);
}

/* SERVICIOS */
.contacto-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin: 18px 0;
    
}

.contacto-services label {
    font-size: 14px;
    color: #083f66;
}

/* BOTON */
.contacto-btn-whatsapp {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}

.contacto-wsp-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* TOAST */
#contacto-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #083f66;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

#contacto-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .contacto-card {
        padding: 30px 22px;
    }

    .contacto-services {
        grid-template-columns: 1fr;
    }

    .contacto-header-link span {
        font-size: 16px;
    }
}

/*Chatbot*/
/* ===== SECCIÓN CONTÁCTANOS MEJORADA ===== */
.contact-section {
  min-height: calc(100vh - 80px);
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 55%),
        linear-gradient(180deg, #78addc, #0d5c91, #062f4d);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* ===== TEXTO ===== */
.contact-info h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 20px;
  position: relative;
}

.contact-info h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #42a5f5);
  display: block;
  margin-top: 12px;
  border-radius: 2px;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 500px;
}

/* ===== CHATBOT CARD ===== */
.chatbot-box {
    border-radius: 30px;
}

/* ===== EFECTO HOVER (DESKTOP) ===== */
@media (hover: hover) {
  .chatbot-box:hover {
    border-radius: 30px;
    transform: translateY(-6px);
    transition: all 0.3s ease;
    box-shadow:
      0 30px 70px rgba(0,0,0,0.18),
      0 0 0 1px rgba(30,136,229,0.2);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 32px;
    text-align: center;
  }

  .contact-info h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info p {
    text-align: center;
    margin: auto;
  }

  .chatbot-box {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .chatbot-box {
    height: 460px;
    border-radius: 14px;
  }
}






/* ===============================
   CLIENTES - SBS MIPYMES
================================ */
.clientes-track {
    display: flex;
    gap: 50px;
    width: max-content; /* 🔥 CLAVE */
    animation: scrollClientes 45s linear infinite;
}

.clientes-section {
    padding: 80px 20px;
    background: linear-gradient(180deg,  #062f4d, #78addc, #003366 );
    text-align: center;
}

.clientes-title {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

/* CONTENEDOR */
.clientes-carousel {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* TRACK */
.clientes-track {
    display: flex;
    gap: 50px;
    animation: scrollClientes 30s linear infinite;
}

/* LOGOS */
.cliente-logo {
    min-width: 180px;
    height: 100px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cliente-logo img {
    max-width: 140px;
    max-height: 70px;
    transition: all 0.10s ease;
}

.cliente-logo:hover img {
    filter: grayscale(0%);
    opacity: 100;
}

.cliente-logo:hover {
    transform: translateY(-10px);
}

/* ANIMACIÓN */
@keyframes scrollClientes {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* PAUSA AL HOVER */
.clientes-carousel:hover .clientes-track {
    animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cliente-logo {
        min-width: 140px;
        height: 90px;
    }

    .clientes-track {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .clientes-title {
        font-size: 24px;
    }
}

















/* =========================
   SECCIÓN PAGO QR
========================= */
.pagoqr-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top right, #e9f3ff, transparent 45%),
        linear-gradient(180deg, #ffffff, #f3f7fb);
}

.pagoqr-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 55px;
    align-items: center;
}

/* INFO */
.pagoqr-info h2 {
    font-size: 34px;
    color: var(--azul-sbs);
    margin-bottom: 15px;
}

.pagoqr-info p {
    font-size: 16px;
    color: var(--gris-texto);
    margin-bottom: 25px;
}

.pagoqr-beneficios {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.pagoqr-beneficios li {
    font-size: 15px;
}

/* BOTÓN CONFIRMAR */
.pagoqr-btn-confirmar {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(14,165,233,0.35);
    transition: transform .3s, box-shadow .3s;
}

.pagoqr-btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(14,165,233,0.45);
}

/* CAJA QR */
.pagoqr-box {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pagoqr-box h3 {
    margin-bottom: 20px;
    color: var(--azul-sbs);
}

/* QR */
.pagoqr-qr-wrapper {
    width: 270px;
    height: 270px;
    margin: auto;
    padding: 16px;
    border-radius: 20px;
    background: #f9fbff;
    box-shadow: inset 0 0 0 2px #e2e8f0;
}

.pagoqr-qr-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pagoqr-text {
    margin: 20px 0 15px;
    font-size: 14px;
    color: var(--gris-texto);
}

/* LOGOS */
.pagoqr-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: center;
}

.pagoqr-logos img {
    width: 100%;
    max-height: 40px;
    object-fit: contain;
    opacity: .85;
}

/* TOAST */
#pagoqr-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0ea5e9;
    color: #fff;
    padding: 15px 22px;
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(14,165,233,.5);
}

#pagoqr-toast.show {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pagoqr-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pagoqr-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}






/* ===============================
   BARRA REDES SOCIALES IZQUIERDA
================================ */
/* ===============================
   BARRA REDES SOCIALES (HERO)
================================ */
.social-bar {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 20;
}

/* LINKS */
.social-bar a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ICONOS */
.social-bar img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* HOVER */
.social-bar a:hover {
    background: var(--verde-sbs);
    transform: translateX(6px) scale(1.08);
}


/* COLORES OFICIALES EN HOVER */
.social-bar .facebook:hover {
    background: #1877f2;
}

.social-bar .instagram:hover {
    background: radial-gradient(circle at 30% 107%,
        #fdf497,
        #fd5949,
        #d6249f,
        #285aeb);
}

.social-bar .tiktok:hover {
    background: #000000;
}

.social-bar .linkedin:hover {
    background: #0a66c2;
}

/* ICONO BLANCO EN HOVER */
.social-bar .social-link:hover img {
    filter: brightness(0) invert(1);
}

/* OCULTAR EN MÓVILES */
@media (max-width: 768px) {
    .social-bar {
        display: none;
    }
}
