/* ===== COOTRABAN DIGITAL - SITE.CSS ===== */

/* Variables */
:root {
  --color-verde-oscuro: #196335;
  --color-verde-claro: #34A335;
  --color-amarillo: #EFE021;
  --color-naranja: #F07D00;
  --color-naranja-rojo: #E95319;
  --color-gris-oscuro: #333;
  --color-gris-medio: #666;
  --color-gris-claro: #ddd;
  --color-gris-fondo: #f5f5f5;
}

/* ===== RESET Y BASE ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--color-gris-oscuro);
  background: white;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

p {
  margin: 0 0 16px 0;
}

/* ===== UTILIDADES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--color-verde-oscuro);
}

.text-orange {
  color: var(--color-naranja);
}

.margin-top {
  margin-top: 32px;
}

.margin-bottom {
  margin-bottom: 32px;
}

.padding-top {
  padding-top: 32px;
}

.padding-bottom {
  padding-bottom: 32px;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-verde-oscuro) 0%, var(--color-verde-claro) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 99, 53, 0.3);
}

.btn-secondary {
  background: var(--color-naranja);
  color: white;
}

.btn-secondary:hover {
  background: var(--color-naranja-rojo);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 125, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-verde-oscuro);
  border: 2px solid var(--color-verde-oscuro);
}

.btn-outline:hover {
  background: var(--color-verde-oscuro);
  color: white;
}

/* ===== TARJETAS ===== */
.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-header {
  border-bottom: 2px solid var(--color-gris-claro);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 20px;
  color: var(--color-verde-oscuro);
  margin: 0;
}

.card-body {
  color: var(--color-gris-medio);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== ALERTAS ===== */
.alert {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.alert-error,
.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ===== SECCIONES ===== */
section {
  padding: 40px 0;
}

section.light {
  background: var(--color-gris-fondo);
}

section.dark {
  background: var(--color-verde-oscuro);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  section {
    padding: 24px 0;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .card {
    padding: 16px;
  }
}

/* ===== UTILIDADES ADICIONALES ===== */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.rounded {
  border-radius: 4px;
}

.rounded-full {
  border-radius: 50%;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE FIXES - COOTRABAN
   Breakpoint 360px (Samsung Galaxy y similares)
═══════════════════════════════════════ */

/* Prevenir scroll horizontal global */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

/* ── 360px ── */
@media (max-width: 360px) {

  /* Tipografía */
  h1 { font-size: 20px !important; }
  h2 { font-size: 17px !important; }
  h3 { font-size: 15px !important; }
  p, li { font-size: 13px !important; }

  /* Contenedores */
  .container, .contenedor, 
  .wrap, .wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Accesos rápidos → 2 columnas */
  .accesos-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 16px 12px !important;
  }
  .acceso-card {
    padding: 14px 8px !important;
  }
  .acceso-icono {
    width: 44px !important;
    height: 44px !important;
  }
  .acceso-texto { font-size: 11px !important; }
  .acceso-sub { display: none !important; }

  /* Botón WhatsApp más pequeño */
  .wsp-container {
    bottom: 14px !important;
    right: 14px !important;
  }
  .wsp-btn {
    width: 48px !important;
    height: 48px !important;
  }
  .wsp-burbuja {
    max-width: 160px !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
  }

  /* CTA botones apilados */
  .cta-botones {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .btn-wsp, .btn-contacto {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
  }

  /* Tarjetas 1 columna */
  .productos-grid,
  .servicios-grid,
  .tarjetas-container {
    grid-template-columns: 1fr !important;
    padding: 0 12px !important;
  }

  /* Formularios */
  .fb-seccion-titulo {
    font-size: 10px !important;
    padding: 8px 12px !important;
  }
  .fb-seccion-body {
    padding: 12px !important;
  }
  .fb-campo label {
    font-size: 10px !important;
  }
  .fb-campo input,
  .fb-campo select,
  .fb-campo textarea {
    font-size: 13px !important;
    padding: 8px 10px !important;
  }
  .fb-btn {
    width: 100% !important;
    padding: 12px !important;
    font-size: 13px !important;
  }
  .fb-footer {
    flex-direction: column !important;
    padding: 16px 12px !important;
    gap: 10px !important;
  }

  /* Tabla auxilios scroll */
  .tabla-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  table { min-width: 480px !important; }
  td, th { 
    padding: 8px 10px !important;
    font-size: 12px !important;
  }

  /* Requisitos 1 columna */
  .requisitos-grid {
    grid-template-columns: 1fr !important;
  }

  /* Info boxes */
  .info-solidaridad,
  .info-destaque {
  }
}

/* ===== RECAPTCHA BADGE ===== */
/* Posicionar el badge de reCAPTCHA en esquina inferior izquierda
   para no chocar con el botón flotante de WhatsApp */
.grecaptcha-badge {
  bottom: 28px !important;
  left: 14px !important;
  right: auto !important;
}
    padding: 14px !important;
    margin: 16px 0 !important;
  }

  /* Hero */
  .hero-section,
  .hero-unidad {
    min-height: 180px !important;
    padding: 30px 16px !important;
  }
}

/* ===== LOGO PSE EN NAVBAR ===== */
.nav-pse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-pse-btn:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.pse-logo-img {
  height: 36px !important;
  width: 36px !important;
  max-height: 36px !important;
  max-width: 36px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,80,0.15);
  flex-shrink: 0;
}

.pse-fallback {
  display: none;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #06447F;
}

/* ===== LOGO LINIX SOFTWARE EN NAVBAR ===== */
.nav-linix {
  display: flex;
  align-items: center;
  margin-left: 6px;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-linix:hover {
  opacity: 1;
  transform: scale(1.05);
}

.linix-logo-img {
  height: 34px !important;
  width: auto !important;
  max-height: 34px !important;
  max-width: 80px !important;
  object-fit: contain !important;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Responsive - ocultar en móvil pequeño */
@media (max-width: 768px) {
  .nav-pse-btn {
    display: none;
  }

  .nav-linix {
    display: none;
  }
}

/* ═══════════════════════════════════════════════ */
/* PÁGINAS LEGALES — SECCIONES INFORMACIÓN        */
/* ═══════════════════════════════════════════════ */

/* Hero Section para páginas legales */
.hero-legal {
  padding: 60px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-legal-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: white;
}

.hero-legal-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Contenido legal general */
.legal-contenido {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Cards generales */
.tip-seguridad, .defensor-card,
.licitacion-info, .politica-item,
.atencion-card, .producto-seccion {
  background: white;
  border: 1px solid #e0ebe0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #1B5E20;
}

.tip-seguridad h3,
.defensor-card h2,
.licitacion-info h2,
.politica-item h2,
.atencion-card h2,
.producto-seccion h2 {
  color: #1B5E20;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-contenido ul, 
.legal-contenido ol {
  padding-left: 20px;
}

.legal-contenido li {
  margin-bottom: 8px;
  color: #444;
  line-height: 1.6;
  font-size: 14px;
}

.legal-contenido p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Canales grid */
.canales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.canal-item {
  text-align: center;
  padding: 16px;
  background: #f8faf8;
  border-radius: 8px;
  border: 1px solid #e0ebe0;
}

.canal-icono { 
  font-size: 28px; 
}

.canal-item h4 { 
  color: #1B5E20; 
  margin: 8px 0 4px; 
  font-size: 14px;
}

.canal-item p { 
  font-weight: 600; 
  color: #333; 
  font-size: 13px;
  margin: 0;
}

.canal-item small { 
  color: #888; 
  font-size: 11px; 
}

/* Tabla atención */
.tabla-atencion {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 12px;
}

.tabla-atencion th {
  background: #1B5E20;
  color: white;
  padding: 10px 16px;
  text-align: left;
}

.tabla-atencion td {
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #444;
}

.tabla-atencion tr:nth-child(even) {
  background: #f5f5f5;
}

/* Pasos PQR */
.pasos-pqr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.paso-pqr {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8faf8;
  padding: 14px;
  border-radius: 8px;
}

.paso-num {
  min-width: 32px;
  height: 32px;
  background: #1B5E20;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.paso-pqr h4 { 
  color: #1B5E20; 
  margin-bottom: 4px;
  font-size: 14px;
}

.paso-pqr p { 
  font-size: 12px; 
  color: #666; 
  margin: 0;
}

/* Productos */
.producto-card {
  background: #f8faf8;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.producto-card h3 {
  color: #1B5E20;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Contactos grid */
.contactos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.contacto-item {
  background: #f8faf8;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e0ebe0;
}

.contacto-item strong { 
  color: #1B5E20; 
}

.contacto-item p { 
  font-size: 12px; 
  color: #555; 
  margin: 4px 0;
}

/* Fecha política */
.politica-fecha {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   FOOTER COOTRABAN - 5 COLUMNAS
═══════════════════════════════════════════════ */

.coot-footer {
  background: #1B5E20;
  color: #C8E6C9;
  margin-top: 0;
}

.coot-footer-grid {
 display: grid !important;
 grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.4fr !important;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 16px;
  align-items: start;
}

/* Columna del logo — sin filtro para mostrar colores propios del SVG */
.coot-footer-brand .footer-logo {
  height: 80px;
  max-width: 120px;
  width: auto;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #A5D6A7;
  margin-bottom: 10px;
  max-width: 240px;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  color: #A5D6A7;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Títulos de columnas */
.footer-col-title {
  color: #FFD54F;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  color: #A5D6A7;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Contacto con íconos */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #A5D6A7;
  font-size: 12px;
}

.footer-contact svg {
  min-width: 13px;
  opacity: 0.7;
}

/* Barra inferior */
.coot-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.coot-footer-bottom p {
  font-size: 12px;
  color: #81C784;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #81C784;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ═══ RESPONSIVE FOOTER ═══ */
@media (max-width: 1024px) {
  .coot-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 20px 20px 14px;
  }

  .coot-footer-brand {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .coot-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px 16px 12px;
  }

  .coot-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 400px) {
  .coot-footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coot-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
  }
}

/* Antiguas clases (compatibilidad) */
footer {
  background: #1B5E20;
}

.footer-legal {
  margin: 0;
}

.footer-legal h4 {
  color: #A5D6A7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  margin-bottom: 8px;
}

.footer-legal a {
  color: #C8E6C9;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-legal a:hover {
  color: white;
}

/* ═══════════════════════════════════════════════ */
/* CONTENEDOR TRIPLE MINI BOTONES                  */
/* ═══════════════════════════════════════════════ */

.acceso-triple-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.mini-acceso-card {
  background: #ffffff;
  border: 1.5px solid #e0ebe0;
  border-radius: 10px;
  padding: 6px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2E7D32;
  transition: all 0.2s ease;
  flex: 1;
  cursor: pointer;
}

.mini-acceso-card:hover {
  background: #E8F5E9;
  border-color: #2E7D32;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(46,125,50,0.15);
}

.mini-acceso-icono {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #f0f4f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mini-acceso-card:hover .mini-acceso-icono {
  background: #C8E6C9;
}

.mini-acceso-icono svg {
  color: #2E7D32;
}

.mini-acceso-texto {
  font-size: 12px;
  font-weight: 700;
  color: #1B5E20;
  white-space: nowrap;
}

/* Responsive Mini Botones */
@media (max-width: 768px) {
  .acceso-triple-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .mini-acceso-card {
    flex-direction: column;
    text-align: center;
    padding: 8px 4px;
    gap: 4px;
    flex: 1;
    min-width: 60px;
  }
}

@media (max-width: 360px) {
  .mini-acceso-texto {
    font-size: 10px;
  }
  .mini-acceso-icono {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
}

/* Responsive Páginas Legales */
@media (max-width: 768px) {
  .canales-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .pasos-pqr { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .contactos-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }

  .hero-legal-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .canales-grid { 
    grid-template-columns: 1fr; 
  }
  
  .pasos-pqr { 
    grid-template-columns: 1fr; 
  }
  
  .contactos-grid { 
    grid-template-columns: 1fr; 
  }

  .hero-legal {
    padding: 40px 20px;
  }

  .hero-legal-content h1 {
    font-size: 22px;
  }

  .hero-legal-content p {
    font-size: 14px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {

  /* Accesos 2 columnas */
  .accesos-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* CTA apilado */
  .cta-botones {
    flex-direction: column !important;
    align-items: center !important;
  }
  .btn-wsp, .btn-contacto {
    width: 100% !important;
    max-width: 280px !important;
  }

  /* Formulario firmas */
  .fb-firma-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── 768px ── */
@media (max-width: 768px) {

  /* Grids formularios → 1 columna */
  .fb-grid-2,
  .fb-grid-3,
  .fb-grid-4,
  .fb-grid-custom-1,
  .fb-grid-custom-2 {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 32px 16px 0 !important;
  }
  
  .footer-logo {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 16px !important;
  }
  
  .footer-links {
    flex-direction: column !important;
  }

  /* Secciones CTA padding */
  .constructora-cta,
  .urbana-cta,
  .cursos-cta,
  [class$="-cta"] {
    padding: 40px 20px !important;
  }

  /* Card formulario sin border-radius en móvil */
  .fb-card {
    border-radius: 0 !important;
    margin: 0 !important;
  }
}

/* ===== reCAPTCHA v2 WIDGET ===== */
.recaptcha-widget {
  display: flex;
  justify-content: center;
  margin: 16px 0 8px;
  padding: 4px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

/* Ocultar badge flotante de v3 si quedó */
.grecaptcha-badge {
  display: none !important;
}

/* ===== PRINT ===== */
@media print {
  body {
    background: white;
  }

  nav,
  footer {
    display: none;
  }

  .no-print {
    display: none !important;
  }
}
