:root {
  --primary: #F57C00;
  --primary-dark: #E65100;
  --text: #555;
  --bg-light: #F5F5F5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
  padding-top: 70px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--bg-light);
}

h1, h2 {
  color: var(--primary-dark);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

.btn-consultar {
  margin-top: 12px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* INTRO SERVICIOS / SOBRE NOSOTROS */
.services-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #F57C00;
}

.services-intro h2 {
  margin-bottom: 20px;
}

.services-description {
  color: #444;
  margin-bottom: 30px;
}

.services-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.services-stats strong {
  font-size: 40px;
  color: var(--primary);
}

.services-stats span {
  display: block;
  color: #555;
}

/* GRID DE SERVICIOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--primary-dark);
}

.service-card p {
  padding: 0 20px 30px;
  color: #555;
}

/* Centrado completo del Hero / Inicio */
#inicio {
  text-align: center;
}

#inicio .container {
  max-width: 700px;
}

#inicio p {
  margin: 10px 0;
}

#inicio .btn-primary {
  margin-top: 25px;
}

#inicio {
  background-image: linear-gradient(
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.6)
    ),
    url("../img/hero/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#promociones h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* CONTACTO - CARD ÚNICA */

.contact-card-single {
max-width: 500px;   /* 👈 más chica */
  margin: 0 auto;
  background: white;
  border-radius: 18px;
  padding: 35px;      /* 👈 menos padding */
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  text-align: center;
}

/* TITULOS */
.contact-main-title {
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.contact-form-title {
  color: var(--primary-dark);
  margin: 40px 0 20px;
}

/* ICONOS REDES */
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
}

.contact-socials img {
  width: 28px;
  height: 28px;
}

.contact-socials a:hover {
  color: var(--primary-dark);
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* BOTON */
.btn-full {
  width: auto;                 
  min-width: 180px;            
  padding: 12px 30px;
  margin: 30px auto 0;         
  display: block;
  font-size: 16px;
  font-weight: bold;
}


