/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ========== VARIABLES CSS ========== */
:root {
  /* Colores basados en el logo */
  --color-primary: #333333;
  --color-accent: #FF6B00;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-gray: #AAAAAA;

  /* Tipografía */
  --font-body: 'Inter', sans-serif;

  /* Tamaños de fuente */
  --fs-normal: 1rem;
  --fs-small: 0.875rem;

  /* Espaciados */
  --header-height: 4.5rem;
}

/* ========== BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-normal);
  background-color: var(--color-white);
  color: var(--color-primary);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin-inline: 1.5rem;
}

/* ========== BUTTON ========== */
.button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #E55A00; /* Un naranja un poco más oscuro al hover */
}

/* ========== HEADER & NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav__logo-img {
  width: 90px; /* Ajusta este valor según el tamaño de tu logo */
}

.nav__logo-text {
  font-size: 1rem;
  line-height: 1.2;
}

.nav__logo-text span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray);
}

/* Menú para escritorio */
.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--color-accent);
}

/* Menú Hamburguesa y Cerrar (Para móviles) */
.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__cta-button {
  display: none; /* Oculto en móviles por defecto */
}

/* ========== MENU PARA MÓVILES ========== */
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding-block: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease;
  }

  /* Mostrar menú móvil */
  .show-menu {
    top: 0;
  }
}

/* ========== ESCRITORIO ========== */
@media screen and (min-width: 768px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 2.5rem;
  }

  .nav__cta-button {
    display: inline-block;
  }
}



















/* ========== HERO SECTION ========== */
/* ========== HERO SECTION (FULLSCREEN BACKGROUND) ========== */
.hero--fullscreen {
  position: relative;
  height: 100vh; /* Ocupa toda la pantalla */
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  align-items: center;
}

.hero__secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-weight: 600;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero__secondary-button:hover {
  color: var(--color-accent);
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hero__info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.hero__info-item i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* Imagen de Fondo */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ========== BREAKPOINTS ========== */
/* Para tablets */
@media screen and (min-width: 576px) {
  .hero__buttons {
    flex-direction: row;
  }

  .hero__info {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Para escritorio */
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }

  .hero__description {
    font-size: 1.3rem;
  }
}

/* Para pantallas grandes */
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}

/* Para pantallas muy grandes */
@media screen and (min-width: 1200px) {
  .hero__content {
    max-width: 900px;
  }
}



















/* ========== SERVICES SECTION ========== */
.services {
  background-color: var(--color-light-gray);
}

.services__container {
  text-align: center;
}

.services__header {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-top: 70px;
  color: var(--color-primary);
}

.services__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
}

.services__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service__card {
  background: var(--color-white);
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-accent), #FF8C42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service__icon i {
  font-size: 2rem;
  color: var(--color-white);
}

.service__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service__description {
  color: #666666;
  line-height: 1.6;
}

.services__footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 100px;
}

.services__footer-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666666;
}

/* ========== BREAKPOINTS - SERVICES ========== */
/* Para móviles */
@media screen and (max-width: 575px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Para tablets */
@media screen and (min-width: 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Para escritorio */
@media screen and (min-width: 768px) {
  .services__title {
    font-size: 3rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .service__card {
    padding: 3rem 1.5rem;
  }
}

/* Para pantallas grandes */
@media screen and (min-width: 1024px) {
  .services__grid {
    gap: 3rem;
  }
}
























/* ========== SPECIALIZED GALLERY SECTION ========== */
.special-gallery {
  background-color: var(--color-light-gray);
  padding-top: 100px;
  padding-bottom: 100px;
}

.special-gallery__container {
  text-align: center;
}

.special-gallery__header {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.special-gallery__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.special-gallery__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
}

.special-gallery__content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Columnas del Gallery */
.gallery-column {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-column__header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-column__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-column__title i {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.gallery-column__subtitle {
  color: #666666;
  font-size: 0.9rem;
}

/* Carrusel Styles - CORREGIDO */
.gallery-carousel {
  position: relative;
}

.carousel-container {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 100%; /* Asegurar que ocupe todo el ancho */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Asegurar que el track ocupe el 100% */
}

.carousel-slide {
  min-width: 100%; /* CADA SLIDE OCUPA EL 100% DEL CONTENEDOR */
  flex-shrink: 0;
  width: 100%; /* Asegurar que cada slide ocupe el 100% */
}

.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover; /* Esto mantiene la proporción y recorta si es necesario */
  object-position: center; /* Centra la imagen */
  border-radius: 0.5rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background: #E55A00;
}

.carousel-btn i {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-accent);
}

/* Para imágenes más angostas - asegurar que se centren */
.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8; /* Fondo por si la imagen es muy angosta */
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background: #E55A00;
}

.carousel-btn i {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-accent);
}

.special-gallery__cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.special-gallery__cta-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666666;
}

/* ========== BREAKPOINTS - SPECIAL GALLERY ========== */
/* Para móviles */
@media screen and (max-width: 767px) {
  .special-gallery__content {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide img {
    height: 250px;
  }

}

/* Para tablets y escritorio */
@media screen and (min-width: 768px) {
  .special-gallery__content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .special-gallery__title {
    font-size: 3rem;
  }
  
  .carousel-slide img {
    height: 350px;
  }
}

/* Para pantallas grandes */
@media screen and (min-width: 1024px) {
  .special-gallery__content {
    gap: 4rem;
  }
  
  .gallery-column {
    padding: 3rem;
  }
}









































/* ========== CONTACT SECTION ========== */
.contact {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
}

.contact__container {
  text-align: center;
  margin: 0 auto;
  max-width: 80%;
  padding-top: 80px;
  padding-bottom: 80px
}

.contact__header {
  max-width: 600px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.contact__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
}

.contact__content {
  display: grid;
  gap: 4rem;
  text-align: left;
  width: 100%;
}

/* Información de Contacto */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact__info-group {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.contact__info-description {
  color: #cccccc;
  margin-bottom: 2rem;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__method:last-child {
  border-bottom: none;
}

.contact__method-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__method-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.contact__method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.contact__method-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact__method-link:hover {
  color: #ff8c42;
}

.contact__method-text {
  color: #cccccc;
  margin-bottom: 0.25rem;
}

.contact__method-content p {
  color: #999999;
  font-size: 0.9rem;
}

/* Redes Sociales */
.contact__social {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact__social h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.contact__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact__social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.contact__social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Formulario */
.contact__form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--color-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* CORRECCIÓN DEL SELECT - TEXTO VISIBLE */
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--color-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

/* Opciones del select con fondo oscuro */
.form__select option {
  background: #2d2d2d;
  color: var(--color-white);
  padding: 10px;
  font-size: 1rem;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999999;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit-button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.form__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.button__icon {
  font-size: 1.2rem;
}

/* ========== CORRECCIONES PARA MÓVIL ========== */
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 0 1rem;
    margin: 0 auto;
    max-width: 95%;
  }
  
  .contact__header {
    margin: 0 auto 3rem;
    padding: 0;

  }
  
  .contact__title {
    font-size: 2rem;
    padding-top: 35px;
  }
  
  .contact__subtitle {
    font-size: 1rem;
  }
  
  .contact__content {
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
  }
  
  .contact__form-container,
  .contact__info-group,
  .contact__social {
    padding: 1.5rem;
  }
  
  .contact__method {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact__method-icon {
    align-self: center;
  }


  .contact__container {
    padding-bottom: 60px
  }
}

/* Para pantallas muy pequeñas */
@media screen and (max-width: 375px) {
  .contact__container {
    padding: 0 0.5rem;
    width: calc(100% - 1rem);
  }
  
  .contact__form-container,
  .contact__info-group,
  .contact__social {
    padding: 1rem;
  }
  
  .contact__title {
    font-size: 1.8rem;
  }
}

/* ========== BREAKPOINTS - CONTACT ========== */
/* Para tablets y escritorio */
@media screen and (min-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact__title {
    font-size: 3rem;
  }
  
  .contact__method {
    align-items: center;
  }

}

/* Para pantallas grandes */
@media screen and (min-width: 1024px) {
  .contact__content {
    gap: 5rem;
  }
  
  .contact__form-container {
    padding: 3rem;
  }
}






























/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  padding: 4rem 0 1rem;
  margin-top: 4rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.footer__logo-img {
  width: 100px;
  height: 100px;
}

.footer__logo-text {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--color-white);
}

.footer__logo-text span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray);
}

.footer__description {
  color: #cccccc;
  line-height: 1.6;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* Links Sections */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer__link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

/* Contact Info */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cccccc;
  font-size: 0.95rem;
}

.footer__contact-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
  width: 20px;
}

.footer__contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--color-accent);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
}

.footer__copyright {
  color: #999999;
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal-link {
  color: #999999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--color-accent);
}

/* ========== BREAKPOINTS - FOOTER ========== */
@media screen and (min-width: 768px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 5rem 0 1rem;
  }
  
  .footer__content {
    gap: 3rem;
  }
}

/* Para móviles */
@media screen and (max-width: 767px) {
  .footer {
    padding: 3rem 0 1rem;
  }

  .espaciado{
    margin-left: 20PX;
  }
  
  .footer__content {
    gap: 2.5rem;
  }
  
  .footer__brand {
    text-align: center;
    align-items: center;
  }
  
  .footer__description {
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__logo-img{
    width: 200px;
    height: 200px;
  }

  .footer__logo-text{
    display: none;
  }
}

