@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Montserrat:wght@100;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
/*gerales*/
:root {
  --title-color: #ffffff;
  --title-shadow: 
      0 1px 0 #c2185b, 
      0 2px 0 #c2185b,
      0 3px 0 #7d485a, 
      0 2px 0 #c2185b,
      0 2px 0 #c2185b,
      0 6px 1px rgba(0,0,0,.1), 
      0 0 5px rgba(0,0,0,.1), 
      0 1px 3px rgba(0,0,0,.3), 
      0 3px 5px rgba(0,0,0,.2), 
      0 5px 10px rgba(0,0,0,.25), 
      0 10px 10px rgba(0,0,0,.2), 
      0 20px 20px rgba(0,0,0,.15);
}

 *{
    font-family: 'Roboto', sans-serif;
    margin:0; 
    padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

section[id] {
    padding-top: 0; 
    scroll-margin-top: 70px !important;
  }

  section[id] * {
    margin: 0; 
    padding: 0;
  }

  html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 70px;   
    scroll-behavior: smooth;
}

  html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

  html::-webkit-scrollbar{
    width: .8rem;
}

  html::-webkit-scrollbar-track{
    background: transparent;
}

  html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

/*---------------------------------------------------*/
/*                     Header                        */
/* --------------------------------------------------*/
.header {
   background: linear-gradient(to bottom, #A44C6E, #A44C6E80) !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: .8rem 0;
    overflow: hidden; 
}

.header .logo {     
    display: flex;
    margin-left: auto;
  }
  
  .header .logo img {
    max-width: 100%;
    height: auto; 
    width: 4rem; 
  }
  
  .logo a {
    text-decoration: none; 
    display: flex;    
  }
  
  .texto-adelante {
    color: #ffffff ;
    font-size: 1.5rem; 
    margin-left: 0.5rem; 
    text-align: center;
  }
  a {
    text-decoration: none; 
}
  /* ---------------- Responsivo ---------------- */
@media (max-width: 768px) {
  .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 1rem;
  }

  .header .logo {
      flex: 1;
      margin-left: 0;
      justify-content: center;
  }

  .header .logo img {
      width: 3rem; 
  }

  .texto-adelante {
      font-size: 1.2rem; 
      margin-left: 0;
      text-align: center;
  }

  .menu-hamburguesa {
      position: absolute;
      right: 1rem;
      top: 1rem;
  }
}
/*---------------------------------------------------*/
/*                  Header  scroll                   */
/* --------------------------------------------------*/
.header.scrolled {
    background-color: #A44C6E !important;
    transition: background-color 0.3s ease;
}

.header.scrolled .dropdown-menu {
    background-color: #A44C6E; 
}

.header.scrolled .dropdown-item:hover {
  background-color: #E2567C;
}

.fixed-top.scrolled {
    background-color: #A44C6E !important;
}

/*---------------------------------------------------*/
/*                 Nav-Var                           */
/* --------------------------------------------------*/
.navbar-nav .nav-link {
   font-family: "Lato", "Arial", sans-serif, ;
   color: #ffffff !important;
   font-weight: 300;
   font-size: 1.5rem;
   padding: .8rem 1.5rem;
   transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    transform: scale(1.1);
}

.dropdown-menu {
    background-color: #A44C6E80;
    border: none;
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.8rem;
}

.dropdown-item {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #E2567C;
   color: #fff;
}
/*-------------------- Responsivo --------------------*/
@media (max-width: 768px) {
  .navbar-nav .nav-link {
      font-size: 1.2rem; 
      padding: 0.5rem 1rem; 
      align-items: center;
      justify-content: center;
  }

  .dropdown-menu {
      width: 100%; 
      border-radius: 0; 
      box-shadow: none; 
      left: 0;
      right: auto;
  }

  .dropdown-item {
      font-size: 1.2rem; 
      padding: 0.8rem 1.2rem; 
  }

  .header.scrolled {
      padding: 0.5rem 1rem; 
  }

  .navbar-toggler {
      border: none; 
      outline: none; 
      margin-left: 0;
  }

  .navbar-collapse {
      text-align: left; 
  }

  .navbar {
      flex-wrap: wrap; 
      justify-content: flex-start; 
  }
}

/*--------------------------------------------*/
/* Personalizar el icono del menú hamburguesa */
/*--------------------------------------------*/
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler-icon {
  position: relative;
  width: 2.5rem;
  height: 0.3rem;
  background-color: transparent;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 2.5rem;
  height: 0.3rem;
  background-color: #333; 
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -0.8rem; 
}

.navbar-toggler-icon::after {
  top: 0.8rem; 
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  background-color: #333; 
}

.navbar-toggler.collapsed .navbar-toggler-icon::before,
.navbar-toggler.collapsed .navbar-toggler-icon::after {
  background-color: #333;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent; 
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg); 
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg); 
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before,
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  visibility: visible;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  visibility: hidden; 
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 2.5rem;
  height: 0.3rem;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent; 
 }

 .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before,
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  background-color: #333 !important; 
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent !important; 
}
/*---------------------------------------------------*/
/*                Social Media                       */
/* --------------------------------------------------*/
.social-media {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-right: 1.5rem; 
}

.social-media a {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

  .social-media a:hover {
      transform: scale(1.2);
  }

/*---------------------------------------------------*/
/*               Lenguaje Container                  */
/* --------------------------------------------------*/
.language-container-english {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.language-button-english {
    color: #ffffff;
    background: linear-gradient(to bottom, #A44C6E, #A44C6E80) !important;
    border: none;
    padding: .3rem 1.5rem;
    cursor: pointer;
    border-radius: 0.3rem; 
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500; 
    transition: all 0.3s ease; 
    display: inline-block;
    text-decoration: none;
  }
  
  .language-button-english:hover {
    transform: scale(1.05); 
  }
  
  .language-button-english:active {
    transform: scale(0.98);
  }
  
 #language-spanish-button.language-button-english {
    box-shadow: 2px 2px 5px #FABD00, -2px -2px 5px #A30606 !important; 
}
  
/*---------------------------------------------------*/
/*        Responsivo  language-container             */
/* --------------------------------------------------*/
@media (max-width: 768px) {
    .language-container-english {
      margin-left: auto;    
    }
}

.social-media {
  margin-left: 1.5rem; 
  gap: 1.5rem; 
}

@media (max-width: 768px) {
.language-container-english {
  justify-content: center; 
  margin-top: 1rem;
  margin-right: 1.5rem;
}

.social-media {
  justify-content: center; 
  margin-top: 1rem;
}

.navbar-nav {
  margin-bottom: 2rem; 
 }
}

/*---------------------------------------------------*/
/*             Presentacion Carrucel  1              */
/* --------------------------------------------------*/
#carouselExampleControls {
  width: 90%;
  margin: 0 auto !important; ; 
  margin-top: 6.9rem !important; ;
  padding: 0 2rem; 
}

.carousel-item {
  height: auto;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -80%);
  text-align: center;
  width: 100%; 
}

.carousel-caption h5 {
  font-family: 'Roboto', sans-serif;
  color: var(--title-color);
  text-shadow: var(--title-shadow);
  line-height: 1.2;
  text-align: center;
  font-size: 3rem;
  margin-top: -6rem;
  font-weight: 400;
}

.carousel-control-prev-icon {
  background-image: url('img/nextsinfondo1.png'); 
  background-size: contain; 
  width: 7rem;
  height: 8rem; 
}

.carousel-control-next-icon {
  background-image: url('img/prevsinfondo1.png'); 
  background-size: contain; 
  width: 7rem; 
  height: 8rem; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: contain; 
}

@media (max-width: 768px) { 
  .carousel-item {
     height: auto; 
  } 
  .carousel-item img { 
    height: auto; 
  } 
  .carousel-caption { 
    margin-bottom: 10%;  
  }
  .carousel-caption h5 {
    font-size: 1.5rem; 
  } 
  .carousel-control-prev-icon, 
  .carousel-control-next-icon { 
    width: 4rem; 
    height: 4rem; 
  }
  }

/*---------------------------------------------------*/
/*                 Seccion Nosotros                  */
/* --------------------------------------------------*/
#about-us {
  margin: 0;
  display: block; 
  clear: both; 
}

.about-us-effect {
  position: relative; 
  background: linear-gradient(to top, rgba(164, 76, 110, 0.8), rgba(255, 255, 255, 0.7)), url(img/quinceañerasinfondo.webp) no-repeat center center;
  background-size: contain; 
  background-position: center; 
  text-align: center;
  color: #ffffff;
  padding: 0;
  height: auto;
}

.main-title h1 {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  line-height: 1.2;
  text-align: center;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
}

.about-us-teams {
  display: flex;
  padding: 0;
  border-radius: .5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-us-team {
  text-align: center;
  padding: 2rem;
  border-radius: .5rem;
  margin: 1rem; 
  flex: 1 1 calc(33.33% - 2rem); 
  box-sizing: border-box;
}

.about-us-team img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.about-us-team p {
  font-family: "Segoe UI", Arial, "Roboto Condensed", "Helvetica Neue";
  font-weight: 500;
  margin-top: 1rem; 
  font-size: 1.6rem;
  color: #170D2B;     
  text-align: justify; 
}

.about-us-title {
  flex: 1;
  text-align: center;
  padding: .5rem;
  border-radius: 8rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 1rem;
  transition: border-color 0.3s;
}

.about-us-team h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #170D2B;
  font-weight: 400;
}

.about-us-team i {
  font-size: 1.4rem;
  margin-right: 1rem;
  display: inline-block;
  border-radius: 50%;
  background-color: #E2567C;
  padding: 1rem;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.about-us-team i:hover {
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .about-us-teams {
      flex-direction: column;
  }

  .about-us-team {
      flex: 1 1 100%;
      margin: 1rem 0;
  }

  .main-title h1 {
      font-size: 2.5rem;
  }

  .about-us-team h2 {
      font-size: 1.8rem;
  }

  .about-us-team p {
      font-size: 1.4rem;
  }

  .slogan-2-text {
      font-size: 1.5em;
  }

  .about-us-team img {
      max-width: 80%; 
  }

  .about-us-effect {
      background-size: contain; 
      background-position: center; 
  }
}

 /*---------------------------------------------------*/
 /*           dresses Quinceañera1                    */
 /* --------------------------------------------------*/
 #dresses {
  text-align: center; 
}

.dresses-subtitle {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.dresses-description {
  font-size: 2rem;
  color: #170D2B;
  margin-bottom: 2rem;
}

.dresses-box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.dresses-box {
  width: 300px;
  border: none;
  box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.2s ease-in-out;
}

.dresses-box:hover {
  transform: scale(1.05);
}

.dresses-image img {
  width: 100%;
  height: auto; 
  object-fit: contain; 
}

.dresses-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #5a2958;
  padding: 1rem 0;
}

.btn-primary {
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  background-color: #5a2958;
  border-color: #5a2958;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #762c76;
  border-color: #762c76;
}

.container-dresses p {
  font-size: 1.8rem;
  color: #170D2B;
}


@media (max-width: 768px) {
  .dresses-box {
    width: 100%;
    margin-bottom: 2rem;
  }

  .dresses-subtitle {
    font-size: 1.5rem;
  }

  .dresses-description {
    font-size: 1.5rem;
  }

  .dresses-content h3 {
    font-size: 1.4rem;
  }

  @media (max-width: 768px) {
    .vestidos-image img {
      height: auto; 
      object-fit: contain; 
    }
  }
}

/*---------------------------------------------------*/
/*             dresses Quinceañera2                  */
/* --------------------------------------------------*/
.event-section {
  padding: 2rem;
  background-image: url('img/fondos/fondo4.png'); 
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat; 
  background-attachment: fixed; 
}

.event-content {
  text-align: center;                      
  background: rgba(255, 255, 255, 0.8);   
  border-radius: 1rem;                     
  padding: 2rem;                           
  margin: 0 auto;                          
  max-width: 90rem;                         
}

.event-title {
    font-family: 'Roboto', sans-serif;
    color: #c2185b;
    font-size: 2.5rem;
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
}

.event-subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #170D2B;
}

.square-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);    
  gap: 1.5rem;                                
  width: 100%;
  margin: 0 auto;                           
}

.square {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaeaea; 
  border-radius: .8rem; 
}

.square img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; 
  cursor: pointer;
}

.square img.active {
  opacity: 1;
  position: static;
}

.square-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #5a2958;
  font-weight: 600;

}

@media (max-width: 480px) {
  .square-container {
    grid-template-columns: 1fr; 
  }
}
@media (max-width: 480px) {
  .event-title {
    font-size: 1rem; 
  }

  .event-subtitle {
    font-size: 1.5rem; 
  }

  .square-title {
    font-size: 1.1rem; 
  }
}

@media (max-width: 480px) {
  .square-title {
    font-size: 1.5rem; 
    text-align: center; 
    margin-top: 1rem; 
  }
}

/*---------------------------------------------------*/
/*            Accesorio para Quinceañeras            */
/* --------------------------------------------------*/
.accessories {
  padding: 2rem;
}

.subtitulo-accessories {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

  .description-accessories {
     margin-top: -.5rem;
     color: #170D2B;
     font-size: 1.8rem;
  }

  .accessories-contenido h3 {
    font-size: 1.6rem;
    color: #5a2958;
    font-weight: 600;
  }

  .accessories-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
    padding: 2rem;
 }
 
 .accessories-box-container .accessories-box {
    text-align: center;
    padding: 2rem;
    border-radius: .8rem;
    margin: 0 1rem;
    transition: border-color 0.3s; 
  }

 .accessories-box-container .accessories-box .accessories-image {
    padding: 2.5rem 0;
  }

 .accessories-box-container .accessories-box .accessories-image img {
    border-radius: 5%;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }   
 
  .accessories-box-container .accessories-box .accessories-image img:hover {
    transform: scale(1.05); 
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.2); 
   }

/* Ajuste responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .accessories-box-container {
    grid-template-columns: 1fr; 
    gap: 1rem;
    padding: 1rem;
  }

  .accessories-box {
    padding: 1rem; 
  }

  .accessories-box .accessories-image img {
    max-width: 90%; 
    height: auto; 
    margin: 0 auto; 
  }
}

@media (max-width: 480px) {
  .accessories-box-container {
    padding: 0.5rem; 
    text-align: center;
  }

  .accessories-box {
    padding: 0.5rem; 
  }

  .accessories-box .accessories-contenido h3 {
    font-size: 1.2rem; 
  }

  .accessories-box .accessories-image img {
    max-width: 100%; 
    height: auto; 
  }
}

/*---------------------------------------------------*/
/*             Catalogo con Mini imagenes            */
/* --------------------------------------------------*/
.contenedor-mini {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #ffffffcc, #ad819380);
}

.contenedor-mini h1 {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.description-text {
  font-size: 2rem;
  color: #170D2B;
  margin: 0.5rem 0;
  text-align: center;
  bottom: -2rem;
}

 h2 {
  font-size: 1.6rem;
  color: #646263;
  font-weight: 300;
}

.row-sections {
  display: flex;
  justify-content: center;
  gap: 4rem; 
  width: 100%;
}

.left-section, 
.right-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

#thumbnails-left, 
#thumbnails-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#thumbnails-left img, 
#thumbnails-right img {
  width: 10rem;
  height: 7rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
}

#thumbnails-left img:hover, 
#thumbnails-right img:hover {
  border-color: #A44C6E80;
}

.image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60rem; 
  margin-bottom: 1rem;
}

.image img {
  width: 100%;
  height: auto; 
  max-height: 45rem; 
  object-fit: cover; 
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img:hover {
  transform: scale(1.05); 
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

/*     Responsivo    */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .main-title {
    font-size: 1rem;
}

  .description-text, h2 {
    font-size: 1.2rem;
  }

  .row-sections {
    gap: 1rem;
  }

  #thumbnails-left img, 
  #thumbnails-right img {
    width: 5rem;
    height: 3.5rem;
  }
  .large-image {
    max-width: 50%;
    max-height: 20rem;
  }
}

/*---------------------------------------------------*/
/*                Carrucel2 Salon                     */
/* --------------------------------------------------*/
.container-2 {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 .4rem .6rem rgba(0, 0, 0, 0.1);
}

.text-center-2 h2 {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.text-center-2 p {
  font-family: 'Roboto', sans-serif !important;
  font-size: 2rem;
  color: #170D2B;
  text-align: center;
}

.card2-header h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #A44C6E;
  border-bottom: .2rem solid #A44C6E;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.card2-body p {
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.5rem;
  color: #343a40; 
  font-weight: 400;
}

.card2-body h3 {
  font-family: 'Roboto', sans-serif !important;
  font-size: 2.5rem;
  color: #343a40; 
  font-weight: 400;
}

.list-group-item-container .text-color i {
  color: #5a2958;
}

.list-group-item {
  font-family: 'Roboto', sans-serif;
  color: #A44C6E;
  font-size: 1.6rem;
  background-color: #f8f9fa;
  padding: 0.5rem 1rem; 
  border: 1px solid #e0e0e0;
  border-radius: .5rem;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  min-width: 16rem;
  display: inline-block;
  margin-left: 2rem;
}

.list-group-item:hover {
  color: #E2567C;
  transform: translateY(-2px);
}

.btn-primary-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  border-color: #5a2958;
  background-color: #5a2958;
  padding: 0.7rem 1.5rem;
  border-radius: .5rem;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  margin-right: 30rem;
  margin-bottom: -6rem;
}

.btn-primary-2:hover {
  background-color: #762c76;
  color: #fff;
  border-color: #762c76;
  transform: translateY(-2px);
}

#carouselSecondary {
  position: relative;
  margin: auto;
}

#carouselSecondary .carousel-inner .carousel-item img {
  height: 35rem;
  object-fit: cover;
  border-radius: .5rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #6c757d;

}

#carouselSecondary .secondary-control {
  top: 50%;
  transform: translateY(-50%);
  width: 6.5rem;
  height: 6.5rem;
}

#carouselSecondary .secondary-control.carousel-control-prev {
  left: -1rem;
}

#carouselSecondary .secondary-control.carousel-control-next {
  right: -1rem;
}

.list-group-item-container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  padding-left: 0;
}

.list-group-item:hover {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .container-2 {
    padding: 1rem;
  }

  .text-center-2 h2 {
    font-size: 2.5rem;
  }

  .text-center-2 p {
    font-size: 1.5rem;
  }

  .card2-header h5 {
    font-size: 1.8rem;
  }

  .card2-body p {
    font-size: 1.2rem;
  }

  .card2-body h3 {
    font-size: 2rem;
  }

  .list-group-item {
    font-size: 1.4rem;
  }

  .btn-primary-2 {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 0;
  }

  #carouselSecondary .carousel-inner .carousel-item img {
    height: 25rem;
  }

  #carouselSecondary .secondary-control {
    width: 5rem;
    height: 5rem;
  }
}

/*---------------------------------------------------*/
/*             Eventos Celebraciones                 */
/* --------------------------------------------------*/
.event-section2 {
  margin-top: 3rem;
  background: linear-gradient(to bottom, #ffffffcc, #ad819380);
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  color: white;
  text-align: center;
  overflow: hidden; 
}

.event-title2 {
   font-family: 'Roboto', sans-serif;
   color: #c2185b;
   font-size: 2.5rem;
   margin-top: 1rem;
   font-weight: 400;
   line-height: 1.2;
   text-align: center;
   margin-bottom: 2rem;
}

.event-subtitle2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1f0e42;
  font-weight: 300;
  margin-bottom: 2rem;
}

.circle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.circle {
  width: 27rem;
  height: 27rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-color: white; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.circle img.active {
  opacity: 1;
}

.circle-title {
  font-size: 1.8rem;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  color: #A91B60;
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 480px) {
  .event-title2 {
      font-size: 2rem;
  }

  .event-subtitle2 {
      font-size: 1.2rem;
  }

  .circle {
      width: 20rem;
      height: 20rem;
  }

  .circle-title {
      font-size: 1rem;
  }
}

/*<!----------------------------------------------------*/
/*             Seccion Videos                           */
/*----------------------------------------------------->*/
#carousel {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.carousel {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titles {
  text-align: center;
  margin-bottom: 1rem;
}

.titles h1 {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}

.titles p {
  font-size: 1.4rem;
  color: #1f0e42;
  margin-top: .5rem;
}

.main-video {
  position: relative;
  width: 60%;
  max-width: 60rem;
  aspect-ratio: 16 / 9;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-video video {
  width: 100%;
  height: 100%;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 1.5rem .5rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  color: #762C76;
}

#prevBtn {
  left: 1rem;
}

#nextBtn {
  right: 1rem;
}

.nav-btn:hover {
  background-color: #A44C6E;
  color: #fff; 
  transform: translateY(-50%) scale(1.1); 
  box-shadow: 0px 0.6rem 1.2rem rgba(0, 0, 0, 0.4); 
}
 
.nav-btn:active {
  transform: translateY(-50%) scale(0.95); 
  box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.2); 
}

.thumbnails {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  scrollbar-width: thin;
}

.thumbnail {
  width: 10rem;
  height: 5.5rem;
  cursor: pointer;
  border: 0.2rem solid transparent;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: #007bff;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .titles h1 {
    font-size: 2rem;
  }

  .titles p {
    font-size: 1rem;
  }

  .main-video {
    width: 90%;
  }

  .thumbnail {
    width: 8rem;
    height: 4.5rem;
  }
}

@media (max-width: 480px) {
  .titles h1 {
    font-size: 1.5rem;
  }

  .main-video {
    width: 100%;
  }

  .thumbnails {
    gap: 0.3rem;
  }

  .thumbnail {
    width: 7rem;
    height: 4rem;
  }
}

/*---------------------------------------------------*/
/*            Promociones Especiales                 */
/* --------------------------------------------------*/
.promo-section {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  padding: 2rem;
}

.title-main {
  font-family: 'Roboto', sans-serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}

.subtitle-main {
  font-size: 2rem;
  color: #170D2B;
  margin-bottom: 2rem;
  font-style: italic;
}

.promo-cards {
  display: flex;
  justify-content: center; 
  gap: 2rem; 
  flex-wrap: wrap; 
}

.card {
  border: 1px solid #dddd;
  border-radius: .8rem;
  box-shadow: 0 .4rem .6rem rgba(0, 0, 0, 0.1);
  width: 30rem; 
  transition: transform 0.3s, box-shadow 0.3s; 
  overflow: hidden;
}

.card-footer:hover {
  background-color: #8C3A5A; 
}

.card-header {
  background-color: #A44C6E;
  color: white;
  padding: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.card-body ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
  text-align: left;
  font-size: 1.2rem;
}

.card-body ul li {
  margin: 0.3rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.4rem;
}

.card-body ul li::before {
  content: "✔";          
  position: absolute;
  left: 0;
  top: 0.2rem;            
  color: #A44C6E;       
  font-weight: bold;
  font-size: 1rem;
  line-height: 1; 
}

.card-footer {
  background-color: #A44C6E;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .promo-cards {
    gap: 1rem; 
  }

  .card {
    width: 80%; 
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%; 
  }

  .promo-section {
    padding: 1rem; 
  }

  .title-main {
    font-size: 1.8rem; 
  }

  .subtitle-main {
    font-size: 1rem; 
  }
}

/*---------------------------------------------------*/
/*               Contacto Cliente                    */
/* --------------------------------------------------*/
#customercontacto {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
  url("img/fondos/fondo3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 1rem;
}

.contact-information {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  text-align: center;
}

.contact-information h3 {
  font-size: 1.8rem;
  color: #fff;
}

.contact-information h3 span {
  color: #fff;
  display: block; 
  text-align: left; 
  text-align: justify; 
  font-size: 2rem;
}

#info {
  flex: 1;
  padding: .8rem;
}

.customer-form {
  flex: .6;
  width: 100%;
  background-color: #ffff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  padding: 2.2rem;
  text-align: left;
}
.customer-form .red-asterisk2 {
  color: red;
}

.customer-form h2 {
  font-size: 3rem;
  color: #000;
  text-align: center;
  color: transparent;
  background: linear-gradient(to bottom right, #c41d9fb0, #A44C6E, #0062ff);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 font-weight: bold;
}

.contactform form {
  padding: 1.4rem;
}
.contactform label {
  display: block;
  font-weight: bold;
  margin-bottom: .6rem;
  font-size: 1.6rem;
}
.contactform input,
.contactform textarea {
  width: 100%;    
  border: 1px solid #ccc;
  border-radius: .5rem;
  padding: .6rem;
  font-size: 1.3rem;
  outline: none;
  margin-bottom: .6rem;
}
.contactform input:focus,
.contactform textarea:focus {
  border-color: #ec8b0d;
}
.contactform .checkbox-label {
  display: flex;
  align-items: center;
}
.custom-privacy-policy-checkbox {
  width: 2rem; 
  height: 2rem; 
  border: .2rem solid #125c92; 
  margin-right: 1rem; 
  position: relative;
}
input[type="checkbox"] {
  display: none; 
}
.custom-privacy-policy-checkbox::after {
  content: "✔"; 
  display: block;
  color: blue; 
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1; 
  opacity: 0; 
  transition: opacity 0.2s ease-in-out; 
}
input[type="checkbox"]:checked + .custom-privacy-policy-checkbox::after {
  opacity: 1;
}
.checkbox-label span {
  font-size: 1.4rem; 
  color: #000000;
}
.contactform input[type="submit"] {
  background-color: #5a2958;
  color: white;
  cursor: pointer;
  padding: .7rem 1.2rem;
  font-size: 1.6rem;
}
.contactform input[type="submit"]:hover {
  background-color: #762c76;
}

/* --------------------------------------------------*/
@media screen and (max-width: 768px) {
  .contact-information {
      flex-direction: column;
      align-items: center;
  }

  #customercontacto {
    padding: 2rem;
  }

  #info,
  .customer-form {
    width: auto;
  }
  .customer-form {
      margin-top: 1.4rem; 
  }
  }
  
/*---------------------------------------------------*/
/*         Redes Sociales                            */
/* --------------------------------------------------*/
.social-media2 {
  list-style: none;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem; 
}

.social-media2 h2 {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.social-media2 a {
  text-decoration: none;
  margin: 0 1rem;
  transition: transform 0.3s ease;
}

.social-media2 a:hover {
  transform: scale(1.2);
}

.social-media2 img {
  width: 32px; 
  height: auto;
}

/* Responsividad */
/**-----------------------------------------------------*/
@media (max-width: 768px) {
  .social-media2 {
    flex-direction: row; 
    gap: 0.5rem;
  }

  .social-media2 h2 {
    font-size: 1.4rem;
  }

  .social-media2 img {
    width: 28px; 
  }
}

@media (max-width: 480px) {
  .social-media2 {
    flex-direction: column; 
  }

  .social-media2 h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .social-media2 img {
    width: 24px; 
  }
}

/*---------------------------------------------------*/
/*         styles Footer                             */
/* --------------------------------------------------*/
.footer {
  background-color: #333;
  color: #fff;
  padding: .5rem; 
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  margin: 0 0.7rem; 
  text-decoration: none;
  font-size: 1.4rem; 
}

.footer-links a:hover {
  text-decoration: underline;
  color: #c41d9fb0;
}

.copyright {
  margin-top: 0.5rem; 
  font-size: 1.4rem; 
}

.terms-links {
  margin-top: 1rem;
}

.terms-links a {
  color: #8b5b2d;
  text-decoration: none;
  margin: 0 0.5rem;  
  font-size: 1.4rem; 
  text-align: center;
}

.terms-links a:hover {
  text-decoration: underline;
  color: #d3ad7f;
}
/**-----------------------------------------------------*/
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-links a {
    font-size: 1.4rem;
    margin: 0 0.5rem;
  }

  .copyright {
    font-size: 1.2rem;
  }

  .terms-links a {
    font-size: 1.2rem;
  }
}
/*---------------------------------------------------*/
/*         styles the Cookie-bar                     */
/* --------------------------------------------------*/
#cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 30rem;
  width: 60%;
  background-color: #010103;
  color: #fff;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-bar p {
  font-size: 1.5rem;
  margin: 0;
  flex: 1;
}

#cookie-bar a {
 color: #0062ff;
 border: none;
}

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
}

.cookie-buttons button {
  background-color: #0062ff;
  color: #fff;
  border: none;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 0.6rem;
}

.cookie-buttons button:hover {
  background-color: #004bb5;
}
/*----------------------------------------------*/ 
@media screen and (max-width: 768px) {
  #cookie-bar {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      justify-content: center;
      left: 10rem;
      font-size: 1rem;
  }
  .cookie-buttons {
      margin-top: 0.5rem;
  }
  }
/*---------------------------------------------------*/
/*         styles go-up                              */
/* --------------------------------------------------*/
.go-up {
   position: fixed;
   bottom: 2.1rem;
   right: 2.1rem;
   z-index: 1000;
   
   width: 5.6rem; 
   height: 5.6rem;
   display: flex; 
   align-items: center; 
   justify-content: center; 
}

.go-up a {
  text-decoration: none;
  color: #ffffff;
}

.circleup {
  width: 5.6rem;
  height: 5.6rem;
  background-color: #5a2958;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.circleup:hover {
  background-color: #762c76;
  transform: scale(1.1);
}  
/*----------------------------------------------*/ 
@media (max-width: 768px) {
  .circleup {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
  }

  .go-up {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .circleup {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  .go-up {
    bottom: 1rem;
    right: 1rem;
  }
}
/* final**


