/* style.css - Estilos Globales con Nueva Paleta y Tipografías */

/* ================================
   VARIABLES DE COLOR
   ================================ */
:root {
  /* COLORES PRINCIPALES */
  --color-primary: #475203;      /* Verde oliva - Para detalles y bordes */
  --color-highlight: #804c15;    /* Café/cobre - Para resaltar elementos importantes */
  --color-dark: #1d2905;         /* Verde oscuro - Para textos principales */
  
  /* FONDOS */
  --color-bg-main: #e6e6dd;      /* Beige muy claro - Fondo principal */
  --color-bg-secondary: #ddd4c2; /* Beige - Fondo secundario */
  
  /* EXTRAS */
  --color-white: #ffffff;
  --color-whatsapp: #25d366;
}

/* ================================
   ESTILOS GENERALES DE LA PÁGINA
   ================================ */

/* Tipografía Base */
html {
  font-size: 15px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  background-color: var(--color-bg-main);
  color: var(--color-dark);
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.050em; /* -55 en porcentaje relativo */
  text-transform: none; /* Minúsculas */
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 40px 20px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* =========================================
   ENCABEZADO
   ========================================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #707e5f;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(29, 41, 5, 0.15);
}

header .logo img {
  max-height: 90px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

header nav ul li a:hover {
  color: var(--color-highlight);
}

/* =========================================
   SECCIÓN HERO CON VIDEO
   ========================================= */
.hero {
  position: relative;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  height: 60vh;
  min-height: 450px;
  perspective: 1px;
  margin-bottom: 0;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%) translateZ(-1px) scale(2);
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(29, 41, 5, 0.7) 0%, rgba(71, 82, 3, 0.6) 100%);
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.055em;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: Helvetica, Arial, sans-serif;
}

.btn-cta {
  background-color: var(--color-highlight);
  color: var(--color-white);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-family: Helvetica, Arial, sans-serif;
}

.btn-cta:hover {
  background-color: #6a3d11;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* =========================================
   SECCIÓN SERVICIOS
   ========================================= */
.services {
  position: relative;
  padding: 40px 3%;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0c8.3,0,8.3,8.3,16.7,8.3c8.3,0,8.3-8.3,16.7-8.3c8.3,0,8.3,8.3,16.7,8.3c8.3,0,8.3-8.3,16.7-8.3c8.3,0,8.3,8.3,16.7,8.3c8.3,0,8.3-8.3,16.7-8.3" stroke="rgba(128, 76, 21, 0.15)" stroke-width="3" fill="none"/></svg>');
  opacity: 0.15;
  z-index: 0;
}

.services h2 {
  margin-bottom: 50px;
  color: var(--color-white);
  font-size: 2.4rem;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-highlight);
  border-radius: 2px;
}

.service-categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
}

.category {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 15px;
  background: rgba(221, 212, 194, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(221, 212, 194, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category h3 {
  margin-bottom: 30px;
  color: var(--color-dark);
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  background-color: var(--color-bg-secondary);
  padding: 10px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Tarjetas de servicios */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  margin: 30px auto;
  width: 100%;
}

.service-card {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 280px;
  margin: 0 auto;
  color: var(--color-dark);
  box-sizing: border-box;
  justify-self: center;
  border: 2px solid var(--color-bg-secondary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--color-highlight);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s ease;
  margin-bottom: 20px;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h4 {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: color 0.3s ease;
  width: 100%;
}

.service-card:hover h4 {
  color: var(--color-highlight);
}

/* =========================================
   SECCIÓN ESTADÍSTICAS
   ========================================= */
.stats {
  background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-secondary) 100%);
  color: var(--color-dark);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: var(--color-primary);
  letter-spacing: -0.055em;
}

.stats p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--color-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 35px 30px;
  width: 260px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  border: 2px solid var(--color-highlight);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--color-highlight);
  margin-bottom: 20px;
  background: rgba(128, 76, 21, 0.15);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-highlight);
  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  background: rgba(128, 76, 21, 0.25);
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
  display: flex;
  align-items: baseline;
}

.stat-bar {
  width: 50px;
  height: 3px;
  background: var(--color-highlight);
  margin: 10px 0 15px;
}

.counter {
  font-weight: 800;
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
  background: none !important;
  background-clip: border-box !important;
  text-shadow: none !important;
  letter-spacing: 1px;
}

/* =========================================
   SECCIÓN CLIENTES
   ========================================= */
.clients {
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  text-align: center;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-white);
}

.clients h2 {
  margin-bottom: 40px;
  color: var(--color-white);
  font-size: 2.4rem;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.client-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 0;
  z-index: 1;
}

.carousel-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
  transition: transform 0.3s ease-out;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.client-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.client-item:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: brightness(1.2);
}

.client-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: var(--color-white);
  border: 2px solid var(--color-bg-secondary);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.client-item:hover img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-color: var(--color-highlight);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 20 - 40px * 20));
  }
}

/* =========================================
   SECCIÓN CONTACTO - DISEÑO ELEGANTE
   ========================================= */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--color-bg-main) 0%, var(--color-bg-secondary) 100%);
  color: var(--color-dark);
}

/* Encabezado decorativo */
.contact-heading {
  text-align: center;
  margin-bottom: 60px;
}

.contact-heading h2 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.055em;
}

.heading-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.heading-decoration span {
  height: 2px;
  width: 80px;
  background-color: var(--color-highlight);
}

.heading-decoration i {
  font-size: 1.5rem;
  color: var(--color-highlight);
}

/* Tarjetas de información de contacto */
.contact-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.contact-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--color-bg-secondary);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-highlight);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(128, 76, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
  background-color: var(--color-highlight);
}

.card-icon i {
  font-size: 28px;
  color: var(--color-highlight);
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon i {
  color: var(--color-white);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.contact-card p, 
.contact-card a {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-card a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-highlight);
}

/* Formulario de contacto (Más responsivo) */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-bg-secondary);
}

.form-heading {
  text-align: center;
  margin-bottom: 30px;
}

.form-heading h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.form-heading p {
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.8;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--color-bg-secondary);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-bg-main);
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 3px rgba(128, 76, 21, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background-color: var(--color-highlight);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: Helvetica, Arial, sans-serif;
}

.contact-form button:hover {
  background-color: #6a3d11;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Media queries para responsividad */
@media (min-width: 768px) {
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group:nth-child(5), /* El textarea */
  .contact-form button {
    grid-column: 1 / -1; /* Ocupar ambas columnas */
  }
}

/* Footer simplificado */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 25px 20px;
}

.footer p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

/* Diseño responsive */
@media (max-width: 768px) {
  .contact-card {
    min-width: 45%;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-heading h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 580px) {
  .contact {
    padding: 60px 15px;
  }
  
  .contact-card {
    min-width: 100%;
  }
  
  .heading-decoration span {
    width: 40px;
  }
}

/* =========================================
   BOTONES FLOTANTES
   ========================================= */
   
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 85px; /* Mover hacia arriba */
    right: 20px;
  }
  
  .chatbot-window {
    bottom: 190px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 350px;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
  transform: translateY(-2px);
}

.floating-btn i {
  font-size: 28px;
  color: white;
}

/* Botón de WhatsApp */
.whatsapp-btn {
  background-color: var(--color-whatsapp);
  border: none;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #22c15e;
}

/* Botón de Chatbot */
.chatbot-btn {
  background-color: var(--color-primary);
  border: none;
}

.chatbot-btn:hover {
  background-color: var(--color-dark);
}

/* Animación de pulso para los botones */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse-chat {
  0% {
    box-shadow: 0 0 0 0 rgba(71, 82, 3, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(71, 82, 3, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(71, 82, 3, 0);
  }
}

.chatbot-btn {
  animation: pulse-chat 2s infinite;
}

/* Estilos para el Chatbot */
.chatbot-window {
  position: fixed;
  bottom: 180px;
  right: 30px;
  width: 350px;
  height: 500px;
  background-color: var(--color-white);
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-title i {
  font-size: 22px;
  color: var(--color-highlight);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
}

.chatbot-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: var(--color-bg-main);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 85%;
  line-height: 1.4;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
}

.bot-message {
  background-color: var(--color-white);
  border-top-left-radius: 4px;
  align-self: flex-start;
  border-left: 4px solid var(--color-highlight);
  color: var(--color-dark);
}

.user-message {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  align-self: flex-end;
  border-top-right-radius: 4px;
}

.chatbot-typing {
  background-color: var(--color-white);
  padding: 10px;
  border-radius: 10px;
  align-self: flex-start;
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  border-left: 4px solid var(--color-highlight);
}

.chatbot-typing span {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
}

.chatbot-typing span:nth-child(1) {
  animation: pulse-dot 1s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation: pulse-dot 1s infinite 0.2s;
}

.chatbot-typing span:nth-child(3) {
  animation: pulse-dot 1s infinite 0.4s;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.chatbot-input-container {
  display: flex;
  padding: 15px;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-bg-secondary);
  position: relative;
  z-index: 10000;
}

#chatbot-input {
  flex: 1;
  border: 2px solid var(--color-bg-secondary);
  border-radius: 24px;
  padding: 12px 18px;
  font-size: 14px;
  resize: none;
  height: 40px;
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

#chatbot-input:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 2px 15px rgba(128, 76, 21, 0.2);
}

#send-message {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-highlight) 0%, #6a3d11 100%);
  color: var(--color-white);
  margin-left: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

#send-message:hover {
  background: linear-gradient(135deg, #6a3d11 0%, var(--color-highlight) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#send-message i {
  font-size: 16px;
}

/* Responsividad adicional */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services h2,
  .stats h2,
  .clients h2,
  .contact-heading h2 {
    font-size: 2rem;
  }
  
  header nav ul {
    gap: 10px;
  }
  
  header nav ul li a {
    font-size: 0.9rem;
  }
}