/* styles.css */

/* ===== Base ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: #0f2239;
}

/* ===== Navbar ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #0f2239;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: bold;
  color: #f3b945;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: #fff;
}

nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

nav a:hover {
  color: #f3b945;
}

/* ===== Hero ===== */
.hero {
  background: url('chat1.png') center/cover no-repeat;
  height: 550px;
  position: relative;
}

.overlay {
  position: absolute;
  top: 30%;
  left: 60px;
  color: #f3b945;
  font-family: 'Playfair Display', serif;
}

.overlay h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #f3b945;
  text-shadow:
    0 0 6px rgba(28, 89, 163, 0.6),
    0 0 12px rgba(28, 89, 163, 0.4);
}

.overlay button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #f3b945;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* ===== Services ===== */
.services {
  background: #0f2239;
  padding: 60px 40px;
  text-align: center;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}

.service-grid > div {
  flex: 1 1 20%;
  max-width: 220px;
}

.service-grid h3 {
  color: #f3b945;
  margin-bottom: 10px;
  font-size: 18px;
}

.service-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(202, 216, 13, 0.2);
}

.service-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.service-carousel img.active {
  opacity: 1;
  z-index: 1;
}

/* ===== Gallery ===== */
.gallery {
  background-color: #ffffff;
  padding: 80px 0;
}

.gallery h2 {
  color: #1c59a3;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.carousel-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px #1c59a3;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 34, 57, 0.6);
  border: none;
  color: #1c59a3;
  padding: 12px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-dots {
  text-align: center;
  margin-top: 12px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  background-color: #f3b945;
  cursor: pointer;
}

.carousel-dots .active {
  background-color: #000000;
}

/* ===== Mapa Tampa ===== */
.mapa-tampa {
  margin: 40px 0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mapa-tampa h2 {
  text-align: center;
  color: #0f2239;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.mapa-tampa iframe {
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 400px;
}

.mapa-tampa p {
  margin-top: 15px;
  font-size: 16px;
  color: #ffffff;
}

.mapa-tampa p.description {
  font-style: italic;
}

.mapa-tampa a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.mapa-tampa a:hover {
  background-color: #0056b3;
}

/* ===== Misi¨®n & Visi¨®n ===== */
.mision-vision {
  background: #0f2239;
  color: white;
  padding: 40px 60px;
}

.mision-vision h2 {
  font-family: 'Playfair Display', serif;
  color: #f3b945;
  margin-bottom: 10px;
}

/* ===== Footer ===== */
footer {
  background: #0f2239;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
}

.call-to-action {
  flex: 1;
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  padding-right: 20px;
}

.form {
  flex: 1;
}

.form h3 {
  font-family: 'Playfair Display', serif;
  color: #f3b945;
}

.form input,
.form textarea,
.form button {
  display: block;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

.form textarea {
  height: 100px;
  resize: none;
}

.form button {
  background-color: #f3b945;
  color: #0f2239;
  font-weight: bold;
  cursor: pointer;
}

/* ===== Contact CTA ===== */
.contact-cta {
  position: relative;
  background: url('caal.png') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-cta__content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 12px;
  color: #f3b945;
}

.contact-cta__content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-cta__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #f3b945;
  color: #0f2239;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.contact-cta__button:hover {
  background-color: #e0ac00;
}

/* ===== Responsive: Ocultar navbar en m¨®vil ===== */
@media only screen and (max-width: 768px) {
  header.nav > nav {
    display: none !important;
  }
}


