.elementor-15 .elementor-element.elementor-element-1cdd4c8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-58ccb21 *//*  ============================================
    CARAVANHUB — FOOTER
    Responsive: desktop → tablet → mobile
    Para usar en Elementor: Theme Builder → Footer
    ============================================ */

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

:root {
  --brand: #1B4D3E;
  --brand-dark: #143B2F;
  --brand-darker: #0E2A1F;
  --cta: #FF6B35;
  --cta-hover: #E85A25;
  --cta-glow: rgba(255, 107, 53, 0.2);
  --white: #FFFFFF;
  --gray-50: #F8F8F8;
  --text-muted: #717171;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1140px;
  --radius: 8px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body { font-family: var(--font); margin: 0; padding: 0; }

/* ============================================
   FULL-WIDTH FIX FOR ELEMENTOR PRO
   
   Elementor wraps custom HTML inside:
   .elementor-section > .elementor-container > .elementor-column > 
   .elementor-widget-wrap > .elementor-widget > .elementor-widget-container
   
   All these layers can add max-width, padding, margins.
   We nuke ALL of them from this widget outward.
   ============================================ */

/* Force Elementor parent containers to be full width */
.footer-full-width-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

/* ============================================
   FOOTER MAIN
   ============================================ */
.site-footer {
  display: block;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: var(--brand-dark);
}

/* Pre-footer CTA band */
.footer-cta-band {
  background: var(--brand);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-cta-band__text h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem;
}
.footer-cta-band__text p {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.footer-cta-band__actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.footer-cta-band__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); border: none;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
  white-space: nowrap;
}
.footer-cta-band__btn--primary {
  background: var(--cta); color: var(--white);
  box-shadow: 0 2px 8px var(--cta-glow);
}
.footer-cta-band__btn--primary:hover {
  background: var(--cta-hover); transform: translateY(-1px);
}
.footer-cta-band__btn--secondary {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.footer-cta-band__btn--secondary:hover {
  background: rgba(255,255,255,0.18);
}
.footer-cta-band__btn svg { width: 16px; height: 16px; }

/* Footer grid */
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem clamp(1rem, 4vw, 2rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
}

/* Column: About */
.footer__about-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem; text-decoration: none;
}
.footer__about-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
}
.footer__about-logo-text {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em;
}
.footer__about-logo-text span { color: rgba(255,255,255,0.6); }
.footer__about-desc {
  font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer__socials { display: flex; gap: 8px; }
.footer__social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all var(--transition);
}
.footer__social:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }

/* Column headings & links */
.footer__col-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer__links li a:hover { color: var(--white); }
.footer__links li a svg { width: 15px; height: 15px; opacity: 0.5; flex-shrink: 0; }

/* Contact column */
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem;
}
.footer__contact-item svg {
  width: 18px; height: 18px; color: rgba(255,255,255,0.5); flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 500;
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--white); }
.footer__contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* Divider */
.footer__divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal-links { display: flex; gap: 1.25rem; }
.footer__legal-links a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.75); }

/* SEO local text */
.footer__seo-text {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; line-height: 1.7;
  color: rgba(255,255,255,0.3);
}

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

/* TABLET (≤1024px) */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__about { grid-column: 1 / -1; }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
  .footer-cta-band__inner {
    flex-direction: column; text-align: center;
  }
  .footer-cta-band__actions { width: 100%; }
  .footer-cta-band__btn { flex: 1; justify-content: center; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__about { text-align: center; }
  .footer__about-logo { justify-content: center; }
  .footer__socials { justify-content: center; }

  .footer__bottom {
    flex-direction: column; text-align: center; gap: 1rem;
  }
  .footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .footer__seo-text { text-align: center; }

  /* Collapsible columns on mobile */
  .footer__col-mobile { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 1.25rem; }
  .footer__col-title--mobile {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; user-select: none; padding: 4px 0;
  }
  .footer__col-title--mobile::after {
    content: '+'; font-size: 1.2rem; font-weight: 400; color: rgba(255,255,255,0.3);
    transition: transform 0.2s ease;
  }
  .footer__col-mobile.open .footer__col-title--mobile::after {
    content: '−';
  }
  .footer__col-collapse {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .footer__col-mobile.open .footer__col-collapse { max-height: 300px; }
  .footer__col-collapse .footer__links { padding-top: 0.75rem; }
  .footer__col-collapse .footer__contact-item:first-child { padding-top: 0.75rem; }
}

/* SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  .footer-cta-band__actions { flex-direction: column; }
}/* End custom CSS */