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

@font-face {
    font-family: '__Gloria Hallelujah_5';
    src: url('../fonts/gloriahallelujah.eot');
    src: local('☺'), url('../fonts/gloriahallelujah.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Base Styles */
body {
  font-family: '__Gloria Hallelujah_5', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background:#E21E79;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}
.header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.header-content h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.header-content p {
  font-size: 1rem;
}

.destacadoArea {
    border: #E21E79 1px solid;
    padding: 40px;
    margin: 25px;
}

.destacado {
    color: #E21E79;
}

/* Slider */
.slider {
  position: relative;
  height: 540px; /* Adjust according to your image dimensions */
  overflow: hidden;
}
.slides {
  position: relative;
  height: 100%;
}
.slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideAnimation 36s infinite;
}
.slides img:nth-child(1) { animation-delay: 0s; }
.slides img:nth-child(2) { animation-delay: 6s; }
.slides img:nth-child(3) { animation-delay: 12s; }
.slides img:nth-child(4) { animation-delay: 18s; }
.slides img:nth-child(5) { animation-delay: 24s; }
.slides img:nth-child(6) { animation-delay: 30s; }

@keyframes slideAnimation {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  17%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Contact Info */
.contact-info {
  background: #EEE;
  color: #000;
  text-align: center;
  padding: 20px 0;
}
.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}
.contact-info a {
  color: #E21E79;
  text-decoration: none;
}

/* Map */
.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Services */
.services {
  padding: 20px 0;
}
.services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.services li {
  background: #e0e0e0;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
