/* ==========================================================================
   VIVE MADERA - ESTILOS PRINCIPALES (CSS)
   Paleta de colores inspirada en la identidad de marca y logotipo oficial.
   ========================================================================== */

:root {
  /* Paleta cromática oficial basada en el logotipo */
  --color-cream-base: #F9F2D7;
  --color-cream-light: #FDFBF5;
  --color-cream-dark: #EADDB5;
  --color-wood-primary: #C77838;
  --color-wood-hover: #B06428;
  --color-wood-dark: #7F3F15;
  --color-wood-light: #E7A978;
  --color-wood-deep: #381E0F;

  /* Colores de texto y contraste */
  --color-text-main: #1A1817;
  --color-text-muted: #5C5651;
  --color-text-light: #8A827B;
  --color-white: #FFFFFF;

  /* Bordes, sombras y acentos */
  --color-border: #E8DEBC;
  --color-border-light: #F0E8CE;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;

  /* Tipografía Sans-Serif y familia del sistema */
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(56, 30, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(56, 30, 15, 0.08);
  --shadow-lg: 0 16px 40px rgba(56, 30, 15, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Reset y caja general */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream-light);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TIPOGRAFÍA Y ENCABEZADOS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-cream-base);
  color: var(--color-wood-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-wood-primary);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   BOTONES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-wood-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(199, 120, 56, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-wood-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 120, 56, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border-color: var(--color-border);
  background-color: rgba(249, 242, 215, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-cream-base);
  border-color: var(--color-wood-primary);
  color: var(--color-wood-dark);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   BARRA SUPERIOR Y HEADER DE NAVEGACIÓN
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 251, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(253, 251, 245, 0.98);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-cream-base);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-main);
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-wood-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-wood-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-wood-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-main);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 5rem 0 4rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 242, 215, 0.7) 0%, rgba(253, 251, 245, 0.3) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
}

.hero-content h1 span.highlight {
  color: var(--color-wood-primary);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
}

.stat-item h3 {
  font-size: 1.85rem;
  color: var(--color-wood-dark);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--color-cream-base);
}

.hero-visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

.hero-badge-floating {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 4px solid var(--color-wood-primary);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-cream-base);
  color: var(--color-wood-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SECCIÓN DE GALERÍA CON ROTACIÓN AUTOMÁTICA
   ========================================================================== */

.gallery-section {
  padding: 5.5rem 0;
  background-color: var(--color-cream-base);
  position: relative;
}

.carousel-container {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-wood-deep);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 540px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-out;
  transform: scale(1.02);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2.5rem 2rem 2.5rem;
  background: linear-gradient(to top, rgba(28, 24, 23, 0.92) 0%, rgba(28, 24, 23, 0.4) 70%, transparent 100%);
  color: var(--color-white);
  z-index: 3;
}

.slide-tag {
  display: inline-block;
  background-color: var(--color-wood-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
  color: var(--color-white);
}

.slide-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

/* Controles de Navegación del Carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background-color: var(--color-wood-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 1.5rem;
}

.carousel-btn.next {
  right: 1.5rem;
}

/* Barra de progreso de auto-rotación */
.carousel-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--color-wood-primary);
  width: 0%;
  z-index: 15;
  transition: width 0.1s linear;
}

/* Indicadores de puntos (Dots) */
.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 2.5rem;
  display: flex;
  gap: 0.6rem;
  z-index: 12;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--color-wood-primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* Miniaturas debajo del carrusel */
.carousel-thumbnails {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb-item {
  width: 100px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item.active, .thumb-item:hover {
  opacity: 1;
  border-color: var(--color-wood-primary);
  transform: translateY(-2px);
}

.carousel-status-info {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-wood-dark);
}

/* ==========================================================================
   SERVICIOS Y PROCESO ARTESANAL
   ========================================================================== */

.process-section {
  padding: 5.5rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-wood-light);
}

.process-step-num {
  font-size: 2.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-cream-dark);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   CATEGORÍAS DE CATÁLOGO
   ========================================================================== */

.catalog-section {
  padding: 5.5rem 0;
  background-color: rgba(249, 242, 215, 0.35);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.catalog-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.catalog-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img-wrap img {
  transform: scale(1.06);
}

.catalog-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.catalog-card-body p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.catalog-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-wood-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.catalog-link-btn:hover {
  color: var(--color-wood-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   FORMULARIO DE COTIZACIÓN Y CONTACTO
   ========================================================================== */

.quote-section {
  padding: 5.5rem 0;
  background-color: var(--color-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.quote-info-box {
  background-color: var(--color-cream-base);
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.quote-info-box h2 {
  font-size: 2.15rem;
  margin-bottom: 1rem;
}

.quote-info-box p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-wood-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.bullet-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.bullet-text span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.quote-form-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-cream-light);
  color: var(--color-text-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-wood-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(199, 120, 56, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.925rem;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-3px) scale(1.03);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon-circle {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--color-text-main);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem 0;
  border-top: 4px solid var(--color-wood-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo-img {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--color-wood-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-cream-base);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVIDAD Y MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual-card img {
    height: 380px;
  }
  .carousel-track {
    height: 440px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-cream-light);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.75rem;
    transition: left 0.3s ease;
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.open {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .carousel-track {
    height: 360px;
  }

  .slide-title {
    font-size: 1.35rem;
  }

  .slide-caption-wrapper {
    padding: 2rem 1.25rem 1.25rem 1.25rem;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

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

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span.btn-label {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

