* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
}

body.politicas .navbar {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

body.politicas .navbar .nav-links a {
  color: #222;
}

body.politicas .navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
}

body.politicas .nav-links {
  background: rgba(0, 0, 0, 0.95) !important;
}

body.politicas .nav-links a {
  color: #fff !important;
}

body.politicas .hamburger span {
  background: #fff !important;
}

header {
  margin: 0 auto;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
.hero {
  width: auto;
  max-width: 100%;
  padding-top: 120px; 
  margin: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem 2rem 1rem;
  position: fixed; /* 👈 Hace que se quede fijo */
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; /* 👈 Color de fondo para que no se superponga con fondo blanco */
  z-index: 1000; /* 👈 Asegura que quede encima del resto */
  transition: background-color 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: #ffffff; /* Fondo blanco al hacer scroll */
  padding: 1rem 4rem 1rem 1rem; /* Reduce el padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: #222; /* Cambia color del texto si usas fondo blanco */
}

.nav-links a.active {
  color: #40a8c5;
  font-weight: bold;
  border-bottom: 2px solid #40a8c5;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 200px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: content 0.2s, opacity 0.2s;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.hero-content {
  width: auto;
  display: flex;
  align-items: center;
  height: 70vh;
  z-index: 2;
  position: relative;
  padding-left: 5vw;
}

.hero-text {
  padding: 3rem;
  max-width: 520px;
  z-index: 4;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #555;
}

.cta-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border: none;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.13);
  border-radius: 3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 1.5px solid #40a8c5;
}
.cta-button a{
  color: #000;
  text-decoration: none;
}

.cta-button:hover {
  background: #40a8c5;
  color: white;
}

.hero-image-wrapper {
  position: absolute;
  top: -15rem;
  right: -7rem;
  min-width: 320px;
  width: min(60vw, 700px);
  height: min(110vh, 900px);
  max-width: 100vw;
  max-height: 100vh;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 80px;
  transform: rotate(-45deg);
  transition: transform 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: rotate(45deg) scale(1.6);
  min-width: 320px;
  min-height: 320px;
  max-width: 100vw;
  max-height: 100vh;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
  }
  .hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navbar{
    padding: 1rem 2rem;
  }
  .logo {
    margin-left: -2rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.90);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    padding: 2rem 0;
    text-align: center;
    gap: 1.5rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 2;
  }
  .nav-links.open {
    display: flex;
  }
  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 0;
    max-width: 100vw;
    border-radius: 0;
    transform: none;
    margin: 0;
    z-index: 0;
    background: none;
    pointer-events: none;
    display: block;
  }
  .hero-image {
    width: 100vw;
    height: 100vh;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
  }
  .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.30) 60%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
    pointer-events: none;
    display: block;
  }
  .hero-content {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    background: transparent;
    width: 100vw;
    padding: 2rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 3;
  }
  .hero-text h1, .hero-text p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .hero-text h1{
    font-size: 2rem;
  }
  .hero-text p{
    font-size: .9rem;
  }
}

@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
}


@media (max-width: 900px) {
  .logo img {
    content: url('../img/Logo_B.png');
  }
  
    .navbar {
    background-color: rgba(0, 0, 0, 0.85); /* Fondo semitransparente oscuro */
  }

  .nav-links a {
    color: #fff; /* Asegura que los links sigan siendo blancos */
  }

  .navbar.scrolled {
  background-color:  rgba(0, 0, 0, 0.85); /* Fondo blanco al hacer scroll */
  padding: 1rem 4rem 1rem 1rem; /* Reduce el padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: #fff; /* Cambia color del texto si usas fondo blanco */
}

  .hamburger span {
    background: #fff; /* Asegura que las líneas del botón hamburguesa sean blancas */
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0 0 3rem;
  flex-wrap: wrap;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  grid-template-rows: repeat(2, 160px);
  gap: 1rem;
}

.about-box {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.about-box-fullwidth {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-box-fullwidth img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-box {
  background-color: #40a8c5; /* Puedes cambiar el color */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #666;
  margin-bottom: 2rem;
}

.about-text .cta-button {
  padding: 1rem 2rem;
  background: white;
  border: none;
  border-radius: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}

@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .about-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* cuadrado adaptable */
  }

  .about-box-fullwidth {
    grid-column: 1 / 3;
  }

  .about-text {
    text-align: center;
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-text .cta-button {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
}


/* === Servicios Destacados === */
.beneficios-section {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2vw;
}
.beneficios-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #222;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1100px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

.beneficio-card {
  background: #f7f7f7;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, background 0.2s;
  min-height: 260px;
  position: relative;
}
.beneficio-card--highlight {
  background: #f7f7f7;
  color: #000;
  box-shadow: 0 4px 24px rgba(64,168,197,0.13);
}
.beneficio-card--highlight h3,
.beneficio-card--highlight p,
.beneficio-card--highlight .beneficio-link {
  color: #000;
}
.beneficio-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-left: auto;
  margin-right: auto;
}
.beneficio-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.beneficio-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.beneficio-card p {
  font-size: 0.90rem;
  color: #555;
  margin-bottom: .5rem;
}
.beneficio-card--highlight p {
  color: #000;
}
.beneficio-link {
  font-size: 0.98rem;
  color: #40a8c5;
  text-decoration: none;
  font-weight: 500;
  margin-top: auto;
  transition: color 0.2s;
}
.beneficio-link:hover {
  color: #1a74e9;
  text-decoration: underline;
}

/* === Carrusel de Certificaciones === */
.carrusel-c {
  width: 100%;
  max-width: auto;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
}
.carrusel-c h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #40a8c5;
}
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 1.5rem 0;
}
.slide-track {
  display: flex;
  width: calc(220px * 18); /* 9 logos x2 duplicados */
  animation: scroll-carrusel 28s linear infinite;
}
.slide {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.slide img {
  width: 120px;
  height: auto;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.slide img:hover {
  filter: grayscale(0) drop-shadow(0 2px 8px #40a8c5aa);
  opacity: 1;
}
@keyframes scroll-carrusel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1980px); } /* 220px * 9 logos */
}


.services-section {
  padding: 0rem 2rem;
  background: #f9f9f9;
  margin-bottom: 4rem;
}

.services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.services-header h2 {
  font-size: 1.8rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
  color: #fff;
}

.card img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 1rem;
  transition: height 0.3s ease, background 0.3s ease;
  height: 60px; /* solo muestra el título */
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-content h3 {
  margin-top: -.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.card-content p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-content {
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* fondo semitransparente al pasar el cursor */
}

.card:hover .card-content p {
  opacity: 1;
}

.video-section {
  background-color: #40a8c5;
  padding: 4rem 2rem;
  color: #fff;
}

.video-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.text-column {
  flex: 1 1 45%;
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.5;
}

.video-column {
  flex: 1 1 50%;
  aspect-ratio: 16/9;
  max-width: 100%;
}

.video-column iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* === Carrusel de Sectores === */
.products-section {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 2rem auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0 2vw;
}
.products-title-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  margin-right: 1.5rem;
}
.products-title-box {
  background: #40a8c5;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 16px;
  padding: 2.5rem 1.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 2px;
  min-width: 140px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.products-title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-title-content h2 {
  margin: 0;
  font-size: 1.5rem;
}

.products-title-content p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: lighter;
  color: #fff;
  line-height: 1.3;
  max-width: 180px;
}
.products-carousel-controls {
  display: flex;
  gap: 1.5rem;
}
.products-carousel-btn {
  background: #fff;
  border: 2px solid #40a8c5;
  color: #40a8c5;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.products-carousel-btn:hover {
  background: #40a8c5;
  color: #fff;
}
.products-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
  min-width: 0;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem; /* espacio para que no corte el scroll */
}

.products-carousel-viewport::-webkit-scrollbar {
  height: 8px;
}
.products-carousel-viewport::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.products-carousel-viewport::-webkit-scrollbar-thumb {
  background: #40a8c5;
  border-radius: 4px;
}
.products-carousel-viewport::-webkit-scrollbar-thumb:hover {
  background: #1a74e9;
}

.products-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(.4,1.2,.4,1);
  padding: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  height: auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  min-width: 300px;
  max-width: 340px;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-image-strip {
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.product-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: .5rem;
  color: #40a8c5;
}

.product-content p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 900px) {
.products-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .products-title-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .products-title-box {
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    margin-left: 1.5rem;
  }

  .products-carousel-controls {
    margin-top: -1rem;
    margin-left: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .products-carousel-viewport {
    width: 100%;
  }

  .products-carousel-track {
    padding: 1rem;
    gap: 1rem;
  }

  .product-card {
    flex: 0 0 85vw;
    max-width: 85vw;
  }
}

.casos-exito {
  background-color: #f9fafb;
  padding: 2rem 2rem;
  text-align: center;
}

.casos-exito h2 {
  font-size: 2rem;
  color: #40a8c5;
  margin-bottom: 0.5rem;
}

.casos-exito p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.slider-clientes {
  overflow: hidden;
  height: 100px;
  position: relative;
}

.slide-track-clientes {
  display: flex;
  width: calc(250px * 18);
  animation: scroll-clientes 40s linear infinite;
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  max-height: 60px;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

@keyframes scroll-clientes {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contact-section {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f7f9fc;
  padding: 4rem 2rem;
  gap: 2rem;
}

.contact-info-box {
  background-color: #40a8c5;
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 350px;
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-box span {
  font-weight: 300;
  color: #fff;
}

.contact-info-box h3{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-box h4{
  font-weight: normal;
  margin-bottom: 1rem;

}

.contact-info-box p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: .5rem;
}

.contact-form-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 2;
  width: auto;
}


.footer {
  background: #40a8c5;
  color: #fff;
  padding: 3rem 2rem 1rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 1rem;
}

.footer-social a img {
  width: 24px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.footer-social a img:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #fff;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #fff;
}

.footer-social a i {
  margin-top: .8rem;
  font-size: 1.2rem;
  color: #fff;
  margin-right: 1rem;
  transition: opacity 0.3s;
}

.footer-social a i:hover {
  opacity: 0.7;
  color: #000;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.politicas-seccion {
  max-width: 1000px;
  margin: 120px auto 60px auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
}

.contenedor-politicas h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: 700;
  text-align: center;
}

.contenedor-politicas p {
  padding: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.contenedor-politicas strong {
  color: #000;
  font-weight: 700;
}
