/* ========== IMPORTS & COLORS ========== */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Raleway:wght@300;400;500;600;700&display=swap");

:root {
  --modos-orange: #da5e1f;
  --modos-dark-green: #003434;
  --modos-beige: #ffead9;
  --modos-gold: #caa91e;
  --modos-purple: #390035;
  --modos-black: #000000;
  --modos-white: #ffffff;
}
/* Social Media Icons */
.social-media {
  position: fixed;
  right: 1420px;
  top: 66%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-media a {
  width: 45px;
  height: 45px;
  background-color: var(--modos-orange);
  color: var(--modos-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(218, 94, 31, 0.3);
}

.social-media a:hover {
  background-color: var(--modos-gold);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(202, 169, 30, 0.4);
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  background-color: #ffead9;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========== HEADER / NAVIGATION ========== */
.modos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--modos-beige);
  box-shadow: 0 2px 6px rgba(0, 52, 52, 0.07);
  padding: 0.8em 1.5em;
  font-family: 'Lato', 'Raleway', sans-serif;
  position: relative;
  z-index: 20;
}

.modos-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--modos-dark-green);
  letter-spacing: 1px;
}

.modos-nav ul {
  display: flex;
  gap: 1.5em;
  margin: 0;
  list-style: none;
  padding: 0;
}

.modos-nav ul li a {
  text-decoration: none;
  color: var(--modos-dark-green);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .5px;
  padding: 0.3em 0.5em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.modos-nav ul li a:hover,
.modos-nav ul li a:focus {
  background: var(--modos-orange);
  color: var(--modos-white);
}

#modosBurger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
}

#modosBurger span {
  display: block;
  height: 3.5px;
  width: 28px;
  background: var(--modos-orange);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .modos-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--modos-beige);
    box-shadow: 0 2px 12px rgba(0,52,52,0.09);
    transform: translateY(-2rem) scaleY(0);
    transition: transform 0.25s;
    transform-origin: top;
    width: 70vw;
    max-width: 290px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
  }
  .modos-nav.open {
    transform: translateY(0) scaleY(1);
  }
  .modos-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.7em 1em;
  }
  #modosBurger {
    display: flex;
  }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #caa91e 0%, #da5e1f 100%);
  color: beige;
  padding: 150px 0 100px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
}
.hero-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-social a {
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.hero-social a:hover {
  color: #d4a373;
  transform: scale(1.2);
}

/* ========== SLIDER ========== */
.slider-section {
  margin-top: 110px;
  margin-bottom: 40px;
}
.swiper {
  width: 100%;
  max-width: 1920px;
  height: 600px;
  margin: 0 auto 3rem auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fc5130;
}
.swiper-pagination-bullet-active {
  background: #e0040b;
}
.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  padding: 12px 24px;
  font-size: 2.1rem;
  border-radius: 12px;
  max-width: 70%;
  z-index: 2;
  box-sizing: border-box;
}
.swiper-slide {
  position: relative;
}

/* ========== SERVICES ========== */
.services-container {
  background: #003434;
  padding: 64px 8vw;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
}
.services-title {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 2.7rem;
  color: #da5e1f;
  margin-bottom: 2.8rem;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.1rem;
}
.service {
  background: #390035;
  border-radius: 24px;
  padding: 38px 24px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.09);
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  min-width: 220px;
  margin-bottom: 14px;
  border: 1.5px solid #ffd7002a;
  transition: transform 0.25s, border-color 0.25s;
}
.service:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: #ffd7006a;
  box-shadow: 0 4px 28px rgba(224, 4, 11, 0.12);
}
.service i {
  font-size: 2.3rem;
  color: #ffd700;
  margin-bottom: 1.1rem;
}
.service h2 {
  font-size: 1.22rem;
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.service p {
  color: #dddddd;
  font-size: 1.01rem;
  font-family: "Roboto", "Lato", sans-serif;
  margin: 0;
}

/* ========== ABOUT US ========== */
.about-section {
  padding: 80px 0;
  background-color: #ffead9;
  text-align: center;
}
.section-title {
  color: #da5e1f;
}
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}
.section-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #003434;
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 3rem;
}
/* ========== CONTACT US ========== */
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #390035 0%, #003434 100%);
  /* Bordó to Verde */
  color: #ffead9;
  /* Modos beige */
  text-align: center;
}

.contact-section .section-title {
  color: #caa91e;
  /* Modos amarillo */
}

.contact-section .section-title::after {
  background: linear-gradient(90deg, #caa91e, #da5e1f);
}

.contact-section .section-text {
  color: #ffead9;
  /* Modos beige */
}

.contact-info {
  max-width: 700px;
  margin: 4rem auto 0;
  font-size: 1.1rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info a {
  color: #da5e1f;
  /* Modos naranja */
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #caa91e;
  /* Modos amarillo */
  border-bottom-color: #caa91e;
}
/* Team Grid - NEW STYLES */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid #caa91e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003434;
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
}

.team-role {
  font-size: 1rem;
  color: #003434;
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-email {
  font-size: 0.9rem;
  color: #caa91e;
  text-decoration: none;
  word-break: break-word;
  display: inline-block;
  transition: color 0.3s;
}

.team-email:hover {
  color: #003434;
  text-decoration: underline;
}
/* Footer */
.main-footer {
  background-color: #003434;
  /* Modos verde */
  color: #ffead9;
  /* Modos beige */
  text-align: center;
  padding: 2rem 0;
  font-size: 0.95rem;
}

/* ========== LANGUAGE SELECTOR ========== */
.language-selector {
  display: flex;
  gap: 8px;
  margin-left: 20px;
  align-items: center;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--modos-orange);
  color: var(--modos-orange);
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px; /* Tamaño grande para los emojis */
  line-height: 1;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 16px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  background-color: var(--modos-purple);
  color: var(--modos-white);
  transform: scale(1.05);
}

.lang-btn.active {
  background-color: var(--modos-purple);
  color: var(--modos-white);
  transform: scale(1.1);
}
