:root {
  --celeste: #70D6FF;
  --celeste_claro: #E1F5FE;
  --cinza: #f4f6f5;
  --escuro: #1c1c1c;
  --branco: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--cinza);
  color: var(--escuro);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
}

.header {
  background: var(--branco);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--celeste);
}
.logo2 {
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--escuro);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--escuro);
}

.btn {
  background: var(--celeste);
  color: var(--branco);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
}

/* Estilos generales de la sección */
.hero {
  display: flex;
  flex-direction: row; /* Lado a lado en pantallas grandes */
  align-items: center; /* Centrado vertical */
  justify-content: space-between; /* Espacio entre texto e imagen */
  padding: 10px 10%;
  min-height: auto;
  background-color: #f9f9f9; /* Un gris muy claro para resaltar */
  gap: 40px;
}

/* Contenedor de texto */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Botón estilizado con tus celestes */
.btn {
  background-color: #70D6FF; /* Celeste sugerido anteriormente */
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #5bbce4;
}

/* Imagen responsive */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 15px; /* Bordes redondeados para un look moderno */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse; /* Imagen arriba o texto arriba en móvil */
    text-align: center;
    padding: 40px 5%;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
}


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

.about-card {
  background: var(--celeste);
  color: var(--branco);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}

.carousel-section {
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
  background: #f4f6f5;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: calc(300px * 10);
  animation: scroll 30s linear infinite;
}

.carousel-track img {
  width: 700px;
  height: auto;
  margin-right: 20px;
  border-radius: 16px;
}

/* animación infinita */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* responsive */
@media (max-width: 768px) {
  .carousel-track img {
    width: 180px;
    height: 300px;
  }
}
.services {
  text-align: center;
}

.service img {
  width: 100%;
  border-radius: 20px;
  margin: 1rem 0;
}
.reviews-section {
  background: var(--branco);
  padding: 4rem 2rem;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--cinza);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-card p {
  margin: 1rem 0;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 1rem;
  color: var(--verde);
}

.review-card span {
  font-size: 0.9rem;
  color: #555;
}

.stars {
  color: #f5b301;
  font-size: 1.2rem;
}
.cta {
  background: linear-gradient(90deg, var(--celeste), var(--celeste_claro));
  color: var(--branco);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content{
  padding: 15px;
}


.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav {
    display: none;
    flex-direction: column;
    background: var(--branco);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .nav.active { display: flex; }

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

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