/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

header {
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #ff003c;
}

.hero {
  background: url('img/hero-bg.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #ff003c;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #c2002f;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.galeria .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
}

.testimonios blockquote {
  font-style: italic;
  margin-bottom: 10px;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto input,
.contacto textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
}

.contacto button {
  background: #ff003c;
  padding: 10px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.contacto button:hover {
  background: #c2002f;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #777;
}

/* Espaciado extra para animaciones */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

.grid {
  margin-top: 30px;
}

.grid-item {
  width: 100%;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.05);
}
.carrusel-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.splide__slide {
  height: 600px; /* puedes ajustar según tu diseño */
  overflow: hidden;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta sin deformar */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  align-items: center;
}

.logo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .logo img {
    height: 80px;
  }
}




