/*--------------------------------------------------------------
# Variables de fuente y color
--------------------------------------------------------------*/
/* Fuentes */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

@media (max-width: 768px) {
  /* Ajustes para dispositivos móviles */
  .conexion-texto {
    font-size: 1.2rem;
  }

  .row.justify-content-center.align-items-center {
    flex-direction: column;
  }
}

/* Colores Globales */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Colores del Menú de navegación. Están separados de los colores globales para permitir mas opciones de personalización */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Ajustes preestablecidos de color. */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Desplazamiento suave */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Estilo general y clases compartidas
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Ajustes de fuentes para móviles */
@media (max-width: 768px) {
  h1 {font-size: 2.5rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.75rem;}
  p {font-size: 1rem;}
}

/*--------------------------------------------------------------
# Header global
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(250, 2, 2, 0.1);
}

/* Encabezado de página de índice
------------------------------*/
.index-page .header {
  --background-color: rgba(240, 11, 11, 0);
}

/* Encabezado de página de indice al desplazarse
------------------------------*/
.index-page.scrolled .header {
  --background-color: #3e1b59/* rgba(226, 10, 10, 0.8); #ahora el nuevo color de identidad es violeta*/ 
}

/*--------------------------------------------------------------
# Menu de navegación
--------------------------------------------------------------*/
/* Navmenu - Escritorio */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(10, 7, 10, 0.903);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), rgb(17, 19, 18)  90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color),#ffc451 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: #3e1b59;/* rgba(226, 10, 10, 0.8);*/
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    display: block;
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer global
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-nosotras .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-nosotras .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-nosotras .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-nosotras p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 10px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .row {
  display: flex;
  align-items: flex-start; /* Alinea todas las columnas en la parte superior */
  justify-content: space-between; /* Distribuye el espacio entre las columnas */
}

.footer .col-lg-4,
.footer .col-lg-2,
.footer .col-md-6,
.footer .col-md-3,
.footer .col-md-12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinea el contenido en la parte superior */
}
.footer .footer-nosotras,
.footer .footer-links,
.footer .footer-newsletter {
  margin-top: 0; /* Asegúrate de que no haya márgenes superiores adicionales */
  padding-top: 0; /* Asegúrate de que no haya paddings superiores adicionales */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Botón de desplazamiento hacia arriba
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Desactivar el retraso de la animación de AOS en dispositivos móviles
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Títulos de páginas globales y rutas de navegación
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Sectiones globales
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Titulos de sección global
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Sección Hero HOME
--------------------------------------------------------------*/

.titulo-ignea {
  font-size: 8rem;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
  font-weight: bold;
}

.hero {
  width: 100%;
  height: auto;
  position: relative;
  background: #3e1b59;
  overflow: hidden;
}

.hero .carousel-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.5;
}

.hero h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 20px;
}

.btn-get-started {
  display: inline-block;
  background: #B60C0C;
  color: white;
  padding: 12px 30px;
  border-radius:  20px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 30px;
}

.btn-get-started:hover {
  background-color: #ffc451;
  color: #B60C0C !important;
  font-weight: bold;
}



.hero .carousel-container {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 50px;
  overflow-y: auto; /* permite scroll interno si se necesita */

}

/* Indicadores en vertical, al costado derecho */
.hero-indicators {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  margin: 0;
}

/* Anular estilos heredados de Bootstrap */
.hero-indicators button {
  all: unset; /* Elimina completamente los estilos heredados */
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}

.hero-indicators button.active {
  background-color: #B60C0C;
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  background-color: white;
  width: 12px;
  height: 12px;
  border-radius: 0%;
  opacity: 0.5;
}

.carousel-indicators .active {
  background-color: #B60C0C;
  opacity: 1;
}

/* Transición profesional combinada*/

#heroCarousel {
    transition: height 0.3s ease-in-out;
    overflow: hidden;
    min-height: 40vh; /* Asegurar que cubra toda la pantalla */
}
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100%;
}

/* Efecto combinado fade + movimiento */
#heroCarousel.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: translateX(20px); /* Movimiento inicial */
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#heroCarousel.carousel-fade .carousel-item.active {
  opacity: 1;
  transform: translateX(0);
}

#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transform: translateX(0);
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
  opacity: 0;
  transform: translateX(-20px);
}

/* Asegurar que el fondo del slide cubra todo */
#heroCarousel .carousel-item .carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}



/* ===== AJUSTES RESPONSIVE (MEJORADO) ===== */

/* ===== MOBILE (teléfonos chicos, hasta 576px) ===== */
@media (max-width: 576px) {
  .titulo-ignea {
    font-size: 7rem;
    margin-bottom: 5;
    text-align: center;
    font-weight: bold;
  }

  .hero h2 {
    font-size: 1.25rem;
    text-align: center;
    padding: 10px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 10px;
    text-align: center;
    margin: 0 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .btn-get-started {
    display: block;
    font-size: 1rem;
    padding: 12px;
    margin: 5px;
    text-align: center;
  }

  /* Indicadores abajo centrados */
  .hero-indicators {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 5px;
    transform: none !important;
  }

  /* Carousel adaptado */
  #heroCarousel {
    height: auto;
    min-height: 55vh;
    max-height: none;
  }

  .carousel-background {
    opacity: 0.3;
  }

  .hero .carousel-container {
    padding: 0;
    text-align: center;
  }

  .hero .carousel-container .container {
    padding: 0 5px; /* solo esto */
  }
}



/* TABLETS PEQUEÑAS (Ajustes finos) */
@media (min-width: 577px) and (max-width: 767px) {
  .titulo-ignea {
    font-size: 4.5rem; /* Aumentado desde 3.5rem */
    margin-bottom: 15px;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.8rem; /* Más grande */
    text-align: center;
    padding: 0 10px;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 0px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .btn-get-started {
    display: block;
    width: 90%;
    font-size: 1.3 rem;
    padding: 12px;
    margin: 5px;
    text-align: center;
  }

  /* Indicadores abajo centrados */
  .hero-indicators {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 5px;
    gap: 5px;
    transform: none !important;
  }

  /* Carousel adaptado */
  #heroCarousel {
    height: auto;
    min-height: 50vh;
    max-height: none;
  }

  .carousel-background {
    opacity: 0.3;
  }

  .hero .carousel-container {
    padding: 0;
    text-align: center;
  }

  .hero .carousel-container .container {
    padding: 0 5px; /* solo esto */
  }
}



/* TABLETS GRANDES (768px a 992px) - Transición a desktop */
@media (min-width: 768px) and (max-width: 992px) {
  .titulo-ignea {
    font-size: 6rem; /* Tamaño intermedio */
  }
  
  /* Carousel adaptado */
  #heroCarousel {
    height: auto;
    min-height: 60vh;
    max-height: none;
  }
  /* Mantener indicadores verticales */
  .hero-indicators {
    position: absolute;
    flex-direction: column;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/*-------------------------------------------------------------
# Sección Misión
-------------------------------------------------------------*/
/* Estilos específicos para la sección Misión */
.mision-container .row {
  display: flex;
  align-items: center;
  padding: 20px;
  background:  #3e1b59; /*linear-gradient (135deg, #ff0000, #000080);*/ /* Degradado del home */
  border-radius: 10px;
  margin-bottom: 15px;
  transition: background-color 0.3s, transform 0.3s;
}

.mision-container .row:hover {
  background: #ffc451; /* Amarillo al pasar el mouse */
  transform: scale(1.02); /* Efecto de escala al pasar el mouse */
}

.mision-container .word {
  font-size: 2rem; /* Texto más grande */
  font-weight: bold;
  color: #fff; /* Texto blanco */
  transition: color 0.3s;
}

.mision-container .row:hover .word {
  color: #8f00e0; /* Lila claro al pasar el mouse */
}

.mision-container .description {
  font-size: 1rem;
  color: #000000; /* Texto negro */
  margin: 0;
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.3s;
  text-align: justify;

}

.mision-container .row:hover .description {
  opacity: 1; /* Muestra el texto al pasar el mouse */
}
#mision-items-container .col-lg-9 {
  padding-left: 10px;
}

@media (max-width: 768px) {
  .mision-container .row {
    flex-direction: column;
    text-align: center;
  }

  .mision-container .col-lg-3,
  .mision-container .col-lg-9 {
    width: 100%;
  }

  .mision-container .word {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .mision-container .description {
    font-size: 0.9rem;
  }
}
.faq-item {
  background-color: #3e1b59;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-item h3 {
  font-size: 1rem; /* Más chico */
  font-weight: 500;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: white;
}

.faq-item .faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
  color: black;
}

.faq-item.faq-active {
  background-color: #ffc451;
  color: #3e1b59;
}

.faq-item.faq-active h3,
.faq-item.faq-active .faq-toggle {
  color: #3e1b59;
  font-weight: bold;
}

.faq-item.faq-active .faq-content {
  max-height: 1000px; /* suficiente espacio para el texto */
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

/* FAQ activos */
.faq-item.faq-active {
  background-color: #ffc451; /* Amarillo cuando está desplegado */
  color: #3e1b59; /* Color del texto al abrir */
}

/* Título y flechita */
.faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

/* Flechita con rotación */
.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
}

/* Contenido */
.faq-content {
  padding-top: 15px;
  display: none;
}

.faq-active .faq-content {
  display: block;
}

/*--------------------------------------------------------------
# Sección equipo
--------------------------------------------------------------*/
.equipo-seccion .equipo-miembro {
  padding: 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.equipo-seccion .equipo-img img {
  border-radius: 50%;
  width: 400px; /* Imágenes más grandes */
  height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
}

.equipo-seccion .equipo-info h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.equipo-seccion .equipo-info span {
  display: block;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 10px;
}

.equipo-seccion .social a {
  display: block;
  margin: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

.equipo-seccion .social a:hover {
  color: #8f00e0; /* Lila claro al pasar el mouse */
}

/* Contenedor del texto animado */
.animated-text-container {
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
  width: 100%; /* Ocupa todo el ancho disponible */
}

/* Texto animado */
.animated-text {
  display: inline-block;
  font-size: 1.25rem; /* Tamaño del texto */
  font-weight: bold;
  color: #ffffff; /* Color del texto (blanco) */
  animation: slide-text 70s linear infinite; /* Animación */
  padding-left: 100%; /* Empieza fuera del contenedor (derecha) */
}
/* Animación de desplazamiento */
@keyframes slide-text {
  0% {
    transform: translateX(0); /* Comienza desde la posición inicial */
  }
  100% {
    transform: translateX(-100%); /* Termina desplazándose completamente */
  }
}

@media (max-width: 768px) {
  .equipo-seccion .equipo-miembro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0px !important;
    padding: 10px;
  }

  .equipo-seccion .equipo-img img {
    width: 200px;
    height: 200px;
  }
  
}

/*--------------------------------------------------------------
# Sección Pilares
--------------------------------------------------------------*/
#pilares {
  padding: 60px 0; /* Espaciado superior e inferior */
}

/* Estilos para cada pilar */
#pilares .pilar-item {
  padding: 15px;
  margin-bottom: 15px; /* Espaciado entre pilares */
  border-radius: 8px; /* Bordes redondeados */
  color: white;
}

/* Pilar generico */
#pilares .pilar-item.pilar {
  color: rgb(77, 69, 69);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
  padding: 2%;
}

#pilares .pilar-item.pilar:hover {
  background: #3e1b59; /*linear-gradient(135deg, #f5d973, #ff0000);*/
  /*background: var(--accent-color); */
  /*background: linear-gradient(135deg, #b8a3c4, #8f00e0);*/
  color: #0a0000;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */

}

#pilares .pilar-item h3 {
  font-weight: bold;
  color:rgb(57, 56, 57);
  margin-bottom: 20px; /* Espaciado inferior */
}

@media (max-width: 768px) {


  #pilares .pilar-item {
    text-align: justify;
    padding: 20px !important;
  }

  #pilares .pilar-item h3 {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Sección Nuestros Servicios
--------------------------------------------------------------*/
.servicios .servicio-item {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 300px; /* Altura fija para que sean rectangulares */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinea el contenido desde la parte superior */
  text-align: center; /* Centra el contenido */
  border-radius: 8px; /* Bordes redondeados */
}

.servicios .servicio-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.servicios .servicio-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color:  var(--text-color);
  text-align: center; /* Centra el título */
  align-self: flex-start; /* Alinea el título en la parte superior */
  width: 100%; /* Asegura que ocupe todo el ancho */
}
.servicios .servicio-item h3:hover {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: white !important;
  text-align: center; /* Centra el título */
  align-self: flex-start; /* Alinea el título en la parte superior */
  width: 100%; /* Asegura que ocupe todo el ancho */
}

.servicios .servicio-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicios .servicio-item ul li {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 10px;

}

.servicios .servicio-item:hover {
  transform: translateY(-10px); /* Efecto de elevación */
  background: #3e1b59; /*linear-gradient(135deg, #ff0000, #000080);*/ 
  color: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
}

/* Estilos para el contenedor de servicios */
.servicios .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra los elementos */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .servicios .servicio-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .servicios .row {
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Sección llamada a la acción
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}
@media (max-width: 768px) {
  .call-to-action h3 {
    font-size: 1.5rem;
  }

  .call-to-action p {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Sección Planes (Acción, Gestión anuncios y Consultorías)
--------------------------------------------------------------*/
.features .features-item {
  margin-top:40px;
  padding: 20px;
  margin-bottom: 60px; /* Espacio entre planes */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.features .features-item ul {
  padding: 0;
}

.features .features-item ul li {
  font-size: 1.15rem;
  color: #444; /* Color del texto */
  margin-bottom: 10px;
  margin-left: 20px;
  line-height: 2;
}

/* Texto vertical "Acción" y nombre del plan */
.vertical-text {
  writing-mode: vertical-lr; /* Texto en vertical */
  transform: rotate(180deg); /* Rotar 180 grados */
  text-align: center;
  margin: 0 auto;
}

.vertical-text .vertical-title {
  font-size: 1.5rem; /* Tamaño para "Acción" */
  font-weight: bold;
  color: #ffc451; /* Color amarillo */
  margin-bottom: 20px; /* Espacio entre "Acción" y el nombre del plan */
}

.vertical-text .vertical-plan {
  font-size: 2.5rem; /* Más grande para "Plan Básico" */
  font-weight: bold;
  color: #151516; /* Color oscuro */
}


/* Contenedor de imágenes */
.image-container {
  height: 400px; /* Altura fija para todas las imágenes */
  width: 100%; /* Ancho completo */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Recorta la imagen si es necesario */
  border-radius: 10px; /* Bordes redondeados */
}

.features img {
  width: 100%; /* Asegura que la imagen ocupe todo el ancho */
  height: 100%; /* Asegura que la imagen ocupe toda la altura */
  object-fit: cover; /* Ajusta la imagen al contenedor sin distorsionarla */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Asegurar que las filas tengan la misma altura */
.row.align-items-center {
  display: flex;
  align-items: stretch; /* Asegura que las columnas tengan la misma altura */
}

/* Ajustar el padding y margen para alinear correctamente */
.col-lg-4, .col-lg-6 {
  padding: 15px; /* Ajusta el padding para alinear correctamente */
}


.price-flag {
  position: relative;
  display: inline-block;
  margin-top: 0px;
}

.banderita-img {
  width: 100px;
  height: auto;
  opacity: 0.9;
  box-shadow: none !important;
}

.price-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* Contenedor de la imagen y la banderita */
.image-container {
  display: flex; /* Alinea la imagen y la banderita en línea */
  align-items: flex-start; /* Alinea los elementos en la parte superior */
}
/* Texto min*/
.texto-min {
  font-size: 1rem !important; /* Tamaño del texto */
  font-style: italic !important;
  text-align: justify !important; /* Justificación del texto */

}
.texto-normal {
  font-size: 1.25rem !important; /* Tamaño del texto */
  text-align: justify !important; /* Justificación del texto */
  line-height: 2; /* Más interlineado */
}

/* Estilos para la sección de titulo Planes */
.tituloPlanes {
  position: relative;
  padding: 100px 0; /* Espaciado superior e inferior */
  color: #fff; /* Texto blanco */
}

.tituloPlanes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tituloPlanes .container {
  position: relative;
  z-index: 2;
}

.tituloPlanes img.img-fluid {
  border-radius: 10px; /* Bordes redondeados para la imagen */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra suave */
}

.tituloPlanes-content {
  text-align: left; /* Alinear el texto a la izquierda */
}
.tituloPlanes-chico {
  font-size: 2rem; /* Título chico */
  font-weight: bold;
  color: #fff; /* Texto blanco */
  position: relative;
  margin-left: 25px;
}

.tituloPlanes-title {
  font-size: 4rem; /* Título grande */
  font-weight: bold;
  color: #fff; /* Texto blanco */
  text-transform: uppercase; /* Texto en mayúsculas */
  position: relative;
  margin-bottom: 20px; /* Espacio debajo del título */
}
/*
.tituloPlanes-title::after {
  content: "PLANES";
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2); 
  transform: scaleY(-1); 
}*/

.tituloPlanes-list h4 {
  font-size: 1.5rem; /* Tamaño del texto */
  color: #fff !important; /* Texto blanco */
  margin-bottom: 10px; /* Espacio entre elementos */
  font-weight: 300; /* Texto más delgado */
}

.tituloPlanes-list a {
  font-size: 1.5rem; /* Tamaño del texto */
  color: #fff !important; /* Texto blanco */
  margin-bottom: 10px; /* Espacio entre elementos */
  font-weight: 300; /* Texto más delgado */
}

.tituloPlanes .tituloPlanes-list a:hover {
  color: #ffc451 !important; /* Cambiar color al pasar el mouse */
}

@media (max-width: 768px) {
  .features .row.align-items-center {
    flex-direction: column;
  }

  .features .col-lg-2,
  .features .col-lg-4,
  .features .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 20px;
  }

  .image-container {
    height: auto;
    margin-bottom: 0px;
  }
  .price-text {
    font-size: 1rem; /* Reducir el tamaño del texto */
    white-space: nowrap; /* Evitar saltos de línea */
    top: 50%; /* Centrar verticalmente */
    left: 50%; /* Centrar horizontalmente */
    transform: translate(-50%, -50%); /* Asegurar que esté centrado */
  }

  .banderita-img {
    width: 80px; /* Reducir el tamaño de la banderita */
  
  }

  .features .features-item {
    margin-top:0px;
    padding: 5px;
    margin-bottom: 10px; /* Espacio entre planes */
  }
  

  .features .features-item ul {
    padding: 0;
  }
  
  .features .features-item ul li {
    font-size: 1rem;
    color: #444; /* Color del texto */
    text-align: justify;
    margin-bottom: 0px;
    margin-top: 0px;

  }
  

}




/*--------------------------------------------------------------
# Nosotras Seccion
--------------------------------------------------------------*/
.nosotras .container-fluid {
  padding: 0;
}

.nosotras .row {
  margin: 0;
}

.nosotras .col-lg-6 {
  padding: 0;
}

.nosotras .expanded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotras .nosotras-content {
  background: #3e1b59; /*linear-gradient(135deg, #be7ae6, #8f00e0);*/
  color: #fff;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nosotras .nosotras-content h3 {
  font-size: 2rem; /* Título más grande */
  margin-bottom: 40px; /* Espacio debajo del título */
  font-weight: bold;
  color: #ffc451; /* Color amarillo para el título */
}

.nosotras .nosotras-content p {
  font-size: 1.1rem; /* Tamaño de fuente un poco más grande */
  line-height: 2; /* Más interlineado */
  margin-bottom: 20px; /* Espacio entre párrafos */
  padding: 20px;
  text-align: justify;
}


.nosotras .nosotras-content p:last-child {
  margin-bottom: 0; /* Elimina el margen inferior del último párrafo */
}

@media (min-width: 992px) {
  .nosotras .nosotras-item p {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .nosotras .row {
    flex-direction: column;
  }

  .nosotras .col-lg-6 {
    width: 100%;
  }

  .nosotras .expanded-image {
    height: auto;
  }

  .nosotras .nosotras-content {
    padding: 20px;
    margin-bottom: 15px;
  }
  .nosotras .nosotras-content p {
    font-size: 1em; /* Tamaño de fuente un poco más grande */
    line-height: 1.8; /* Más interlineado */
    margin-bottom: 10px; /* Espacio entre párrafos */
    padding: 10px;
    text-align: justify;
  }
}


/*--------------------------------------------------------------
# Seccion Contacto
--------------------------------------------------------------*/
/* Ajustes para la sección de contacto */
.contact {
  position: relative;
  padding: 40px 0;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.171); /* Fondo semi-transparente */
  padding: 20px;
  border-radius: 10px;
}

.contact .info-item {
  margin: 40px;
  margin-bottom: 30px; /* Más espacio entre elementos */
  display: flex;
  align-items: start; /* Alinear íconos y texto verticalmente */
}

.contact .info-item i {
  font-size: 24px; /* Iconos más grandes */
  margin-right: 15px;
  color: #ffc451; /* Cambiar el color de los íconos */
}

.contact .info-item h3 {
  font-size: 1.5rem; /* Tamaño de la letra más grande */
  font-weight: bolder;
  color: #020202; /* Color de texto más oscuro */
  margin: 0; /* Eliminar margen superior e inferior */
  line-height: 1.6; /* Interlineado más amplio */
  text-shadow: 1px 1px 2px rgb(107, 104, 104);
}

.contact .info-item p {
  font-size: 1.25rem; /* Tamaño de la letra más grande */
  font-weight: 600;
  color: #030000; /* Color de texto más oscuro */
  margin: 0; /* Eliminar margen superior e inferior */
  line-height: 1.6; /* Interlineado más amplio */
  text-shadow: 1px 1px 2px rgb(107, 104, 104);
}

.contact .info-item a {
  font-size: 1.25rem; /* Tamaño de la letra más grande */
  font-weight: bold;
  color: #030000; /* Color de texto más oscuro */
  text-decoration: none; /* Eliminar subrayado */
  text-shadow: 1px 1px 2px rgb(107, 104, 104);
}

.contact .info-item a:hover {
  color: #ffc451; /* Cambiar color al pasar el mouse */
}



/* Botones de redes sociales */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Espacio entre botones */
}

.btn-social {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-social i {
  margin-right: 10px;
}

.btn-social:hover {
  opacity: 0.9; /* Efecto al pasar el mouse */
}

/* Botón "Dejanos tu consulta" */
.btn-consulta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #151516; /* Color gris */
  color: #ffc451 !important;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-shadow: none !important;
}

.btn-consulta:hover {
  background-color: rgba(226, 10, 10, 0.8); /* Fondo gris al pasar el mouse */
  color: #151516 !important; /* Texto amarillo al pasar el mouse */
}

.contact .php-email-form {
  background: rgba(83, 83, 83, 0.39); /* Fondo más gris */
  padding: 20px;
  border-radius: 10px;
  max-width: 500px; /* Ancho reducido del formulario */
  margin-left: auto; /* Alinear a la derecha */
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #cccccc70;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease; /* Transición suave para el borde */
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #007bff; /* Borde azul al enfocar */
  outline: none;
}

.contact .php-email-form button {
  background-color: #ffc451; /* Botón amarillo */
  color: #151516;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease; /* Transición suave */
}

.contact .php-email-form button:hover {
  background-color: #151516; /* Botón gris más oscuro al pasar el mouse */
  color: #ffc451;
}

/* Validaciones */
.contact .php-email-form input:invalid:not(:focus):not(:placeholder-shown),
.contact .php-email-form textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff0000; /* Borde rojo si el campo no es válido */
}

.contact .php-email-form input:valid:not(:focus):not(:placeholder-shown),
.contact .php-email-form textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #28a745; /* Borde verde si el campo es válido */
}

.fade-out {
  transition: opacity 5s ease;
  opacity: 0;
}

/* Mensajes de formulario de correo electrónico PHP */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@media (max-width: 768px) {
  .contact .info-item h3,
  .contact .info-item p,
  .contact .info-item a {
    color: #ffffff; /* Cambiar el color del texto a blanco */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Añadir sombra para mejorar la legibilidad */
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    background-color: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente para los inputs */
    color: #ffffff; /* Texto blanco en los inputs */
  }

  .contact .php-email-form button {
    background-color: #ffc451; /* Mantener el botón amarillo */
    color: #151516; /* Texto oscuro en el botón */
  }
  .btn-consulta {
    white-space: nowrap;
    display: inline-block;
    width: auto;
  }
}


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}