* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.5;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.logo{
    width:200px;
    max-width:70%;
    display:block;
    margin:0 auto 25px;
}

.hero{
    min-height:100vh;
    background:url('assets/img/hero.png') center/cover no-repeat;
    background-attachment:fixed;
    position:relative;
    display:flex;
    align-items:center;
    color:#fff;
    padding:70px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  
}

.hero h2 {
  font-size: 42px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

.hero-stats {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #eee;
  flex-wrap: wrap;
}

/* BOTONES */
.btn-primary {
  background: #8B5E34;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #6b4426;
}

.full {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* SECCIONES */
.section {
  padding: 70px 0;
}

.section.alt {
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #8B5E34;
}

.card:hover {
  transform: translateY(-5px);
}

/* FEATURES */
.feature {
  text-align: center;
  padding: 20px;
}

.feature i {
  font-size: 35px;
  color: #8B5E34;
  margin-bottom: 10px;
}

/* FORM */
.form-container {
  max-width: 600px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form textarea {
  min-height: 80px;
  resize: none;
}

.map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}



/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 40px 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
    /* animación continua */
  animation: pulse 1.8s infinite;

}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

html{
    scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 70vh;
    padding: 20px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .header-content {
    flex-direction: column;
    gap: 10px;
  }
}
      /* Mﾃ天IL SIN PARALLAX */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.contact-layout{
    display:flex;
    gap:30px;
     align-items:stretch;
}
.map-box,
.form-box{
    padding:30px;
    flex:1;
} 
.map-box iframe{
    width:100%;
    min-height:200px;
    border:0;
    border-radius:10px;
    display:block;

}

/* FORMULARIO DERECHA */
.form-box {
    background:#fff;
    border-radius:10px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.form textarea {
  max-height: 50px;
  resize: none;
}

.btn-primary.full {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

}

  
