/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial Narrow', Arial, sans-serif
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  body {
    padding-top: 74px; /* ajustá según altura real del navbar */
  }
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: #3f3f3f;
  padding: 2px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  font-size: 14px;
  gap: 5px;
}

.nav-item {
  text-decoration: none;
  color: #3f3f3f;
  font-weight: bold;
  padding: 8px 15px;
  transition: 0.3s;
}

.nav-item:hover {
  background-color: #1e9dbde8;
  color: #ffffff;
  border-radius: 5px;
  padding: 20px 30px;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #3f3f3f;
}

/* ===== MOBILE NAV FIX DEFINITIVO ===== */
@media (max-width: 768px) {

  .navbar {
    position: relative;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background-color: #ffffff !important; /* 🔥 FORZADO */
    flex-direction: column;
    align-items: center;

    display: none;
    padding: 20px 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    color: #3f3f3f !important;
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }

  .burger {
    display: block;
  }
}



/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  color: #3f3f3f;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -1;
}

/* Contenido */
.hero-content {
  position: relative;
  max-width: 500px;
  margin-left: 15%;
  text-align: left;
  z-index: 1;
}

.hero h1 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* CTA */
.hero .cta-btn {
  display: inline-block;
  background-color: #1e9dbde8;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 20px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.hero .cta-btn:hover {
  background-color: #ffffffd3;
  color: #d12727;
  padding: 25px 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}




/* ===== WELCOME SECTION ===== */
.welcome {
  background-image: url("images/banner-welcome.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 20px;
  color: #ffffff;
}

.welcome-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Títulos */
.welcome-title1 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 50px;
  color: #646464;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.116);
}

.welcome-title2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Stats */
.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.welcome-stats img {
  max-width: 180px;
  width: 100%;
}

/* Espaciado */
.welcome-spacer {
  height: 150px;
}

/* Columnas */
.welcome-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.welcome-column h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.welcome-column img {
  width: 100%;
  max-width: 150px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .welcome-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 1.7rem;
  }

  .welcome-columns {
    grid-template-columns: 1fr;
  }

  .welcome-stats img {
    max-width: 140px;
  }
}




/* ====== OUR SERVICES ====== */

.our-services {
  background-image: url("images/banner-services.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px; /* 👈 más flexible */
  display: flex;
  justify-content: center;
}


.services-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}


.services-item h1 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 50px;
  color: #646464;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.116);
}

.services-columns {
  display: flex;
  gap: 10px;
  justify-content: center; /* 👈 CLAVE */
  margin-bottom: 60px;
}

.services-item {
  flex: 1;
  text-align: center;
  justify-content: center;
  max-width: 30%;
}

.services-image {
  width: 100%;
  max-width: 400px; /* 👈 dejar solo esta */
  border-radius: 16px;
  margin: 0 auto 40px;
}


.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-item h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-item p {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: #252525;
  text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.568);
}

.service-adverticers-cta {
  display: inline-block;
  background-color: #d12727; 
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.service-adverticers-cta:hover {
  background-color: #520e0e;
  color: #ffffff;
  padding: 20px 38px;
}

.services-adverticers-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.service-affiliates-cta {
  display: inline-block;
  background-color: #1e9dbde8; 
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.service-affiliates-cta:hover {
  background-color: #17172e;
  color: #ffffff;
  padding: 20px 38px;
}

.services-affiliates-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .services-columns {
    flex-direction: column;
    align-items: center;
  }

  .services-item {
    max-width: 100%;
  }
}






/* ===== ADVERTISER ===== */

.advertiser {
  background-image: url("images/background-advertiser.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  background-color: #000000;
  text-align: center;
}

.advertiser .container {
  max-width: 600px;
  margin: 0 auto;
}

.advertiser h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #474747;
  line-height: 1.5;
  margin-bottom: 15px;
}

.advertiser h1 {
  font-size: 2.3rem;
  font-weight: bold;
  color: #d12727;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.253);
}

.advertiser p {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: #646464;
}


@media (max-width: 768px) {
  .advertiser {
    padding: 40px 15px;
  }
  .advertiser h2 {
    font-size: 1rem;
  }
  .advertiser p {
    font-size: 0.9rem;
  }
}


/* ===== ADVERTISER ITEMS ===== */
.advertiser-items {
  background-image: url("images/background-advertiser-items.jpg");
  background-size: cover;
  background-position: center;
  background-color: #000000;
  text-align: center;
}

.advertiser-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid rows */
.advertiser-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

/* 3 columns top */
.advertiser-grid.top-row {
  grid-template-columns: repeat(3, 1fr);
}

/* 2 columns bottom */
.advertiser-grid.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 750px;
  margin: 0 auto;
}

/* Card */
.advertiser-card {
  text-align: center;
}

.advertiser-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #17172e;
  margin-bottom: 20px;
}

.advertiser-card img {
  width: 201px;
  height: 201px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.advertiser-card p {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
  color: #444444;
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 20px;
}


.service-adverticers-cta {
  display: inline-block;
  background-color: #d12727; 
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.service-adverticers-cta:hover {
  background-color: #520e0e;
  color: #ffffff;
  padding: 20px 38px;
}


.advertiser-cta-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .advertiser-grid.top-row,
  .advertiser-grid.bottom-row {
    grid-template-columns: 1fr;
  }

  .advertiser-card img {
    width: 201px;
    height: 201px;
  }
}



/* ====== SECTION SEPARATOR ====== */
.section-separator {
  height: 150px;
  width: 100%;
  background-image: url("images/separator-bg.jpg"); /* tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .section-separator {
    height: 50px;
    width: 100%;
  }
}




/* ===== AFFILIATES ===== */

.affiliates {
  background-image: url("images/background-affiliates.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  background-color: #000000;
  text-align: center;
}

.affiliates .container {
  max-width: 600px;
  margin: 0 auto;
}

.affiliates h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #474747;
  line-height: 1.5;
  margin-bottom: 15px;
}

.affiliates h1 {
  font-size: 2.3rem;
  font-weight: bold;
  color: #1e9dbde8;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.253);
}

.affiliates p {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: #646464;
}


@media (max-width: 768px) {
  .affiliates {
    padding: 40px 15px;
  }
  .affiliates h2 {
    font-size: 1rem;
  }
  .affiliates p {
    font-size: 0.9rem;
  }
}


/* ===== AFFILIATES ITEMS ===== */
.affiliates-items {
  background-image: url("images/background-affiliates-items.jpg");
  background-size: cover;
  background-position: center;
  background-color: #000000;
  text-align: center;
}

.affiliates-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid rows */
.affiliates-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

/* 3 columns top */
.affiliates-grid.top-row {
  grid-template-columns: repeat(3, 1fr);
}

/* 2 columns bottom */
.affiliates-grid.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 750px;
  margin: 0 auto;
}

/* Card */
.affiliates-card {
  text-align: center;
}

.affiliates-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #17172e;
  margin-bottom: 20px;
}

.affiliates-card img {
  width: 201px;
  height: 201px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.affiliates-card p {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
  color: #444444;
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 20px;
}


.service-affiliates-cta {
  display: inline-block;
  background-color: #1e9dbde8; 
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.service-affiliates-cta:hover {
  background-color: #17172e;
  color: #ffffff;
  padding: 20px 38px;
}


.affiliates-cta-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .affiliates-grid.top-row,
  .affiliates-grid.bottom-row {
    grid-template-columns: 1fr;
  }

  .affiliates-card img {
    width: 201px;
    height: 201px;
  }
}




/* ===== ABOUT US ===== */

.about-us {
  background-image: url("images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 80px;
  border-bottom: 0px;
}

.about-container {
  max-width: 70%;
  margin: 0 auto;
}

.about-title,
.about-subtitle {
  text-align: center;
}

.about-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 1.3rem;
  margin-bottom: 70px;
}

/* FILAS INTERCALADAS */
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  max-width: 400px;
}

/* TEXTO C */
.about-text-center {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.about-text-center p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CONTENEDOR DEL CTA */
.about-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* BOTÓN */
.about-cta-link {
  display: inline-block;
  background-color: #ffffff;
  color: #474747;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none; /* elimina subrayado */
  transition: all 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
}

/* HOVER */
.about-cta-link:hover {
  background-color: #6d6d6d;
  color: #ffffff;
  padding: 20px 38px;
}






/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .about-row {
    flex-direction: column;
    text-align: center;
  }

  /* ORDEN MOBILE */
  .order-text-a {
    order: 1;
  }

  .order-image-a {
    order: 2;
  }

  .order-text-b {
    order: 3;
  }

  .order-image-b {
    order: 4;
  }

  .about-text-center {
    order: 5;
  }

  .about-image img {
    max-width: 350px;
    margin-top: 20px;
  }
}





/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  background-color: #000;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}


.clients-carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.carousel-track img {
  height: 50px;
  margin: 0 16px;
  filter: grayscale(80%);
  opacity: 0.8;
  transition: 0.3s;
}

.carousel-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animación */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.cta-btn {
  display: inline-block;
  background-color: #ffffffd3; 
  color: #17172e;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #17172e;
  color: #ffffff;
  padding: 20px 30px;
}



/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 100%;
    height: 260px;
  }
}


/* ====== EVENTS ====== */


.events-section {
  width: 100%;
  min-height: 250px;
  background-image: url("images/events-bg.jpg"); /* reemplazar por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 20px;
}

.events-content {
  max-width: 900px;
  color: #ffffff;
}

.events-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.events-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: bold;
}







/* ====== EVENTS ITEMS ====== */

.events-items {
  background-image: url("images/events-items-bg.jpg"); /* tu imagen */
  background-size: cover;
  background-position: center;
  padding-top: 1px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 80px;
  color: #ffffff;
}

/* CONTENEDOR */
.events-items-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* ITEM */
.event-item {
  text-align: center;
}

/* IMAGEN */
.event-item img {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}

/* SUBTÍTULO */
.event-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: bold;
}

/* TEXTO */
.event-item p {
  font-size: 1.2rem;
  line-height: 1.2;
  max-width: 500px;
  margin: 0 auto;
  color: #e0e0e0;
}








/* ===== STEPS SECTION ===== */

.steps {
  background-image: url("images/banner-steps.jpg");
  background-size: cover;
  background-position: center;
  padding: 20px 20px;
  color: #3d3d3d;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-title {
  margin-left: 10%;
  font-size: 2.4rem;
  margin-bottom: 80px;
  margin-top: 60px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.123);
}

/* STEP ITEM */
.step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* TEXT COLUMN */
.step-text {
  flex: 1;
  max-width: 300px;
}

.step-text h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.step-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: bold;
}

/* IMAGE COLUMN */
.step-image {
  flex: 1;
  max-width: 420px;
  padding-left: 80px;
}

.step-image img {
  width: 100%;
  max-width: 300;
  display: block;
  animation: float 4s ease-in-out infinite;
}

/* FLOATING EFFECT */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .step-text,
  .step-image {
    max-width: 100%;
    padding-left: 0;
  }

  .steps-title {
    font-size: 2rem;
    margin-left: 0%;
    text-align: center;
  }
}






/* ===== CONTACT SECTION ===== */

.contact {
  background-image: url("images/background-contact.jpg");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.contact-container {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

/* TITLES & TEXTS */
.contact-container h1 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #17172e;
}

.contact-intro {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.contact-info {
  font-size: 1rem;
  margin-bottom: 50px;
  color: #5a5a5a;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #cccccc;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* BUTTON */
.contact-btn {
  align-self: center;
  background-color: #4b4b4b;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 35px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #cc0000d3;
  padding: 18px 45px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .contact-container {
    max-width: 100%;
  }

  .contact-container h1 {
    font-size: 2rem;
  }
}





/* ====== FULL WIDTH MAP ====== */
.full-map {
  width: 100%;
  height: 450px;
  margin: 0;
  padding: 0;
}

.full-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .full-map {
    height: 300px;
  }
}





/* ===== PRIVACY PAGE ===== */
.policy-page {
  background-image: url("images/banner-privacy.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  background-color: #90a8dd;
}

.policy-page .container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  color: #ffffff;
}

.policy-page p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  margin-bottom: 20px;
}

.policy-page ul {
  margin: 20px 0;
  padding-left: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  color: #ffffff;
}

.policy-page ul li {
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 40px 15px;
  }
  .policy-page h2 {
    font-size: 1.6rem;
  }
  .policy-page p {
    font-size: 0.9rem;
  }
}







/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    margin: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}



/* ===== FOOTER ===== */

.site-footer {
  background-color: #181818; /* fondo negro */
  color: #ffffff;         /* letras color amarillo */
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-right {
  flex: 1;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.footer-address {
  line-height: 1.4;
  margin-bottom: 10px;
}

.footer-email {
  color: #589afd;
  text-decoration: none;
  font-weight: bold;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-sitemap {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #589afd;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #ffffff; /* un poco más claro para contraste */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-left, .footer-right {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-sitemap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer-link {
    margin-bottom: 0;
  }
}
