@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --color-cardinal: #bf1443;
    --color-burgundy: #750024;
    --color-black: #000;
    --color-white: #fff;
    --color-silver: #b7b7b7;
    --color-battleship-grey: #878787;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

::selection {
    background-color: var(--color-black);
    color: var(--color-white);
}

body {
    background-color: var(--color-white);
}

html {
  scroll-behavior: smooth;
}

body, html {
    height: 100%;
  }

header {
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

header.active-header {
  background-color: var(--color-burgundy);
}

header i {
  display: none;
}

.logo img {
    height: 100px;
    width: 300px;
    object-fit: cover;
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav ul li {
  position: relative;
  margin: 0 10px;
}

.nav ul li a {
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 600;
    padding: 10px;
    transition: all 0.5s ease;
    position: relative;
}
.nav ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--color-white);
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
}

.nav ul li a:hover::before {
  width: 100%;
}

.nav ul li ul {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  width: 160px;
}

.nav ul li:hover ul {
  display: block;
  position: absolute;
  padding: 3px 0;
  margin-top: 10px;
  left: -10px;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.nav ul li ul li {
  
  text-align: left;
}

.nav ul li ul li a {
  display: flex;
  width: 100%;
}

header.down {
  background-color: var(--color-burgundy);
}

header.down .nav ul li ul {
  background: var(--color-burgundy);
}

/*---------------------- INDEX 2*/
.header2 {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100px;
  background-color: var(--color-burgundy);
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  transition: 0.7s;
}

.logo2 img {
  height: 300px;
}

.nav2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav2 ul li {
position: relative;
margin: 0 10px;
}

.nav2 ul li a {
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 600;
  padding: 10px;
  transition: all 0.5s ease;
  position: relative;
}
.nav2 ul li a::before {
content: '';
position: absolute;
width: 0;
height: 3px;
background-color: var(--color-black);
bottom: 0;
left: 0;
transition: all 0.4s ease;
}

.nav2 ul li a:hover::before {
width: 100%;
}

.nav2 ul li ul {
display: none;
background-color: rgba(0, 0, 0, 0.2);
width: 160px;
}

.nav2 ul li:hover ul {
display: block;
position: absolute;
padding: 3px 0;
margin-top: 10px;
left: -10px;
border-radius: 3px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.nav2 ul li ul li {
text-align: left;
}

.nav2 ul li ul li a {
display: flex;
width: 100%;
}

header.down2 {
  background-color: var(--color-burgundy);
}

header.down2 .nav2 ul li a {
  color: var(--color-white);
}

header.down2 .nav2 ul li a::before {
  background-color: var(--color-white);
}

header.down2 .nav2 ul li ul {
  background: var(--color-burgundy);
}

  .homepage {
    height: 100vh;
    width: 100%;
    position: relative;
    /*background:linear-gradient(123deg, black, transparent), url("../images/fuenteplazabelgrano-scaled.jpg") no-repeat center, lightblue;
    background-position: center 50%;
    background-size: cover;
    background-attachment: fixed; */
     overflow: hidden;
  }

  .homepage .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1; 
  }

  .homepage .content-banner {
    display: flex;
    height: 85%;
    padding-top: 15%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-white);
  }

  .homepage .content-banner h1 {
    font-size: 50px;
    text-transform: uppercase;
  }

  .homepage2 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
  }

  .homepage2 .text {
    max-width: 40%;
    font-size: 40px;
    padding-top: 10%;
    text-transform: uppercase;
}

.homepage2 .image-container {
    max-width: 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.homepage2 .image-container img {
    width: 100%;
    height: 100%;
    display: block;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
    object-fit: cover;
}

.arrow-down2 {
  position: absolute;
  bottom: 10px;
  left: 48.4%;
  font-size: 50px;
  cursor: pointer;
  color: var(--color-black);
  transition: all 0.5s ease;
  scroll-behavior: auto;
}

.arrow-down {
  position: absolute;
  bottom: 10px;
  font-size: 50px;
  cursor: pointer;
  color: var(--color-white);
  transition: all 0.5s ease;
  scroll-behavior: smooth;
}
  

.tittle-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    font-size: 35px;
}

.conteiner-highlights {
    background-color: #f2f2f2;
    padding: 20px 0;
}

.conteiner-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.card {
    width: 350px;
    height: 450px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card:active {
  transform: scale(0.98);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.card:hover::before {
  transform: translateX(100%);
}

.condition {
    position: absolute;
    background-color: var(--color-cardinal);
    color: var(--color-white);
    width: 100px;
    height: 30px;
    text-align: center;
    align-content: center;
    text-transform: uppercase;
    left: 0;
    border-radius: 10px 0 0 0;
}

.card-direction, .card-type,  .card-district, .card-price {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    padding-left: 5%;
}

.card-direction {
    font-size: 20px;
    font-weight: 700;
}

.card-district, .card-type {
    font-size: 15px;
    font-weight: 400;
}

.card-price {
    color: var(--color-burgundy);
    font-size: 15px;
    font-weight: 800;
}

.card-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    width: 90%;
    height: 80px;
}

.card-info div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card-info div i {
    font-size: 20px;
    color: var(--color-battleship-grey);
    height: 50%;
    text-align: center;
    align-content: center;
}

.card-info div span {
    font-weight: 600;
    height: 50%;
    text-align: center;
   
}

.conteiner-places h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-size: 35px;
}

.conteiner-places .gal-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gal-img {
    display: flex;
    gap: 15px;
    margin: 60px 0 110px 20px;
}


#img1 {
    grid-area: img1;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 400px;
    height: 300px;
    margin: 15px 0;
    position: relative;
}

#img1 span, #img2 span, #img3 span, #img4 span {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--color-white);
    font-weight: 700;
}

#img1:hover, #img2:hover, #img3:hover, #img4:hover {
    transform: scale(1.05);
}

#img2 {
    grid-area: img2;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 400px;
    height: 500px;
    position: relative;
}

#img3 {
    grid-area: img3;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 400px;
    height: 500px;
    margin: 15px 0;
    position: relative;
}

#img4 {
    grid-area: img4;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 400px;
    height: 300px;
    position: relative;
}

#img1 img, #img2 img, #img3 img, #img4 img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.button-contact {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: green;
    border: none;
    border-radius: 50%;
    right: 5vh;
    bottom: 5vh;
    cursor: pointer;
    z-index: 1;
}

.button-contact:hover {
    border: 4px solid rgba(0, 0, 0, 0.4);
}

.button-contact i {
   font-size: 40px;
   color: var(--color-white);
}


/* ------------------------  PAGINA DE TODAS LAS PROPIEDADES*/

.conteiner-total-propierty {
  background-color: #f2f2f2;
  padding: 130px 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.conteiner-total-propierty h2 {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 30px;
  width: 80%;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  justify-content:center;
  align-items: center;
  background-color: var(--color-white);
  height: 70px;
  width: 100%;
  margin-bottom: 30px;
}

.filter-bar-apply {
  width: 68%;
}

.btn-filter-bar {
  height: 40px;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  background-color: transparent;
}

.btn-filter-bar i {
  margin-right: 5px;
}

.filter-container {
  position: fixed;
  top: 0;
  right: 0;
  right: -100%;
  width: 360px;
  height: 100vh;
  padding: 20px;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  transition: 1s;
  z-index: 10;
}

.filter-container.active {
  right: 0;
  transition: .5s;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.clear-tags {
  background: none;
  border: none;
  color: #9a9a9a;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.clear-tags:hover {
  color: #000;
}

.filter-section {
  margin-bottom: 15px;
}
.filter-section h4 {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

details {
  background: #fff;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
details[open] {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
details[open] {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
summary {
  list-style: none;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
summary::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  transform: rotate(180deg);
}
summary::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  transform: rotate(180deg);
}

details ul {
  padding: 10px;
  border: none;
  list-style: none;
  border-top: 1px solid #eaeaea;
  margin-top: 10px;
  background: #f9f9f9;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
details ul li {
  padding: 5px 0;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease, background 0.3s ease;
  display: flex;
  width: 100%;
  justify-content: left;
  padding-left: 10px;
  position: relative;
}
details ul li.selected::before {
  background: #000;
}
details ul li.selected {
  color: #000;
}
details ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
details ul li:hover::before {
  background: #000;
}
details ul li:hover {
  color: #000;
}
details ul li:hover {
  color: #000;
  background: #eaeaea;
}
details ul li:hover {
  color: #000;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.filter-tag {
  background-color: #e0e0e0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cont-apply-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.apply-button {
  background-color: var(--color-black);
  color: #fff;
  text-align: center;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.apply-button:hover {
  background-color: #333;
}

/*------------------------------  B  A  R  R  I  O  S  ------------------------------*/

.conteiner-all-places {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 20px 0;
}

.gal-ciu {
  display: flex;
  gap: 15px;
  margin: 60px 0 110px 20px;
}


#ciu1 {
  grid-area: img1;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 300px;
  margin: 15px 0;
  position: relative;
}

#ciu2 {
  grid-area: img2;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 500px;
  position: relative;
}

#ciu3 {
  grid-area: img3;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 500px;
  margin: 15px 0;
  position: relative;
}

#ciu4 {
  grid-area: img4;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 300px;
  position: relative;
}

#ciu5 {
  grid-area: img5;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 400px;
  margin: 15px 0;
  position: relative;
}

#ciu6 {
  grid-area: img6;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 400px;
  height: 400px;
  position: relative;
}

#ciu1 span, #ciu2 span, #ciu3 span, #ciu4 span, #ciu5 span, #ciu6 span {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--color-white);
  font-weight: 700;
}

#ciu1:hover, #ciu2:hover, #ciu3:hover, #ciu4:hover, #ciu5:hover, #ciu6:hover {
  transform: scale(1.05);
}

#ciu1 img, #ciu2 img, #ciu3 img, #ciu4 img, #ciu5 img, #ciu6 img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*------------------------ P  A  G  I  N  A  T  I  O  N   --------------------------*/

.conteiner-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 50px;
  border-radius: 25px;
  background-color: var(--color-white);
  color: var(--color-burgundy);
}

.pagination ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pagination ul li {
  margin: 0 10px;
  width: 40px;;
}

.pagination ul .arrows {
  width: 80px;
}

.pagination .active {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-burgundy);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
}

.pagination ul li:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-cardinal);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
}

.pagination ul .arrows:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-cardinal);
  color: var(--color-white);
  width: 80px;
  height: 40px;
  border-radius: 25px;
  font-weight: 700;
}

.pagination li.disabled {
  color: #666;
  cursor: not-allowed;
  pointer-events: none;
}


/*--------------------- PAGINA DE LA FICHA DETALLADA DE LA PROPIEDAD -------------------------*/

.conteiner-ficha {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  background: #f2f2f2;
}

.media-tabs {
  position: absolute;
  bottom: 5%;
  left: calc(50% - 30%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-tabs .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  height: 40px;
  width: 120px;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid silver;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.media-tabs .tab.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid black;
}

.media-tabs .tab:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid black;
}

.media-tabs .tab i {
  margin-right: 10px;
  font-size: 22px;
}

.property-gallery {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 80vh;
  margin: 20px 0;
}

.gallery-section.active {
  display: flex;
  gap: 10px;
}

.gallery-section {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.main-image {
  width: 70%;
  height: 100%;
}

.video-player, .main-plane, .map-embed {
  width: 100%;
  height: 100%;
}

.main-plane img, .video-player video, .map-embed iframe {
  width: 100%;
  height: 100%;
}

.main-plane {
  object-fit: cover;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.side-images {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  gap: 10px;
}

.side-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.side-bot {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.side-bot img {
  width: 100%;
  height: 100%;
}

.side-bot .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.side-bot:hover .overlay {
  background: rgba(0,0,0,0.7);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  position: relative;
  text-align: center;
}

.modal-content img {
  height: 80vh;
  width: 60%;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal i {
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  color: white;
  font-size: 30px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.prev:hover,
.next:hover {
  background-color: rgba(255,255,255,0.5);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.counter {
  margin-top: 10px;
  color: white;
  font-size: 16px;
}


.first-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 20px 0;
}

.first-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 150px;
}


.first-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  height: 100%;
  gap: 10px;
  padding-bottom: 20px;
}

.first-price {
  font-size: 40px;
}

.first-address {
  font-size: 18px;
  font-weight: 600;
}

.first-ubication {
  font-size: 18px;
  font-weight: 400;
}

.first-type {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}

.first-right {
  display: flex;
  flex-direction: column;
  justify-content:baseline;
  align-items: center;
  height: 100%;
}

.first-condition {
  background: var(--color-cardinal);
  color: var(--color-white);
  height: 25px;
  width: 100px;
  font-size: 15px;
  text-align: center;
  align-content: center;
  border-radius: 2px;
}

.shareBtn {
  height: 40px;
  width: 40px;
  background-color: var(--color-silver);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shareBtn i {
  font-size: 22px;
}

.shareBtn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}


.first-bot {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 120px;
}

.first-bot div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--color-burgundy);
  color: var(--color-white);
  width: 70px;
  height: 70px;
  border-radius: 5px;
}

.first-bot i {
  font-size: 25px;
}

.first-bot span {
  font-size: 18px;
}

.conteiner-description, .ficha-caracteristicas {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.conteiner-description h2, .ficha-caracteristicas h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ficha-caracteristicas {
  border: none;
}


.contenedor-caracteristicas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.caracteristica {
  background: #e9ecef;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.caracteristicas-tittle {
  margin: 0;
  font-weight: bold;
  color: var(--color-black);
  display: flex;
  align-items: center;
}

.caracteristicas-tittle h4 {
  margin-left: 5px;
}

.caracteristica p {
  margin: 5px 0 0;
  color: #6c757d;
}


/*---------------------- C  O  N  T  A  C  T  O   --------------------------------*/

.help-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0;
}

.help-contact h3 {
  font-size: 30px;
}

.help-form {
  width: 60%;
  margin-top: 30px;
}

.help-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.help-form input {
  width: 100%;
    height: 45px;
    background-color: #F0F1F8;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 5px;
}

.help-form select {
  width: 100%;
    height: 45px;
    background-color: #F0F1F8;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 5px;
}

.help-form textarea {
  width: 100%;
  height: 100px;
  background-color: #F0F1F8;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border: none;
  resize: vertical;
  border-radius: 5px;
}

.help-form button {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
.help-form button {
   margin-top: 30px;
   padding: 10px 20px;
   width: 20%;
   font-size: 17px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s ease;
   background-size: 200% auto;
   color: var(--color-white);            
   box-shadow: 0 0 20px #eee;
   border: none;
   border-radius: 5px;
   display: block;
   cursor: pointer;
 }

 .help-form button:hover {
   background-position: right center; 
 }


.contact-front {
    position: relative;
    padding-top: 100px;
    height: 40vh;
    width: 100%;
    background: url("../images/5.jpg");
    background-position: center 50%;
    background-size: cover;
  }

  .contact-front::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  .contact-front .content-port {
    display: flex;
    height: 85%;
    align-items: center;
    justify-content: center;
  }

  .contact-front  h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 700;
    padding-top: 50px;
    color: #fff;
    z-index: 1;
  }

  .contact-inf {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
  }

  .contact-inf .form-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 220px;
  }

  .form-info>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 220px;
    width: 270px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px solid #750024;
    border-radius: 10px;
  }

  .form-info i {
    color: var(--color-burgundy);
    font-size: 40px;
    margin: 30px 0 15px 0;
  }

  .form-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form-info div div {
    font-size: 15px;
    color: var(--color-battleship-grey);
  }

  .contact-form {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact-form h3 {
    font-size: 30px;
  }

  .conteiner-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }

  .form {
    width: 60%;
  }

  .form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }

  .form form input {
    width: 100%;
    height: 45px;
    background-color: #F0F1F8;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 5px;
  }

  .form form textarea {
    width: 100%;
    height: 100px;
    background-color: #F0F1F8;
    padding: 10px;
    font-size: 16px;
    outline: none;
    border: none;
    resize: vertical;
    border-radius: 5px;
  }
  
  .form form button {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .form form button {
   margin-top: 30px;
   padding: 10px 20px;
   width: 20%;
   font-size: 17px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s ease;
   background-size: 200% auto;
   color: var(--color-white);            
   box-shadow: 0 0 20px #eee;
   border: none;
   border-radius: 5px;
   display: block;
   cursor: pointer;
  }
  
  .form form button:hover {
    background-position: right center; 
  }

/*------------------------- S O B R E    N O S O T R O S   ---------------------------*/

main .about-auza {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
 .about-auza {
      padding: 4rem 2rem;
      margin: auto;
      position: relative;
      z-index: 1;
      width: 90%;
      background: #f9f9f9;
      display: flex;
      flex-direction: column;
    }

    .about-intro {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      margin-bottom: 3rem;
      margin-top: 70px;
      
    }

    .text-content {
      flex: 1 1 400px;
      max-width: 600px;
      color: var(--color-burgundy);
    }

    .text-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--color-cardinal);
    }

    .text-content p {
      line-height: 1.6;
      font-size: 1.1rem;
    }

    .image-content {
      flex: 1 1 300px;
      text-align: center;
    }

    .image-content img {
      width: 100%;
      max-width: 500px;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .sub-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .sub-about h2 {
      font-size: 2rem;
      color: var(--color-cardinal);
    }

    .highlighted-quote {
      max-width: 800px;
      margin: 2rem auto 3rem auto;
      background: #fde7eb; /* un fondo muy claro relacionado al cardinal */
      border-left: 6px solid var(--color-cardinal);
      padding: 1.5rem 2rem;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--color-burgundy);
      box-shadow: 0 4px 10px rgba(191, 20, 67, 0.15);
      border-radius: 0.6rem;
      line-height: 1.6;
    }

    .highlighted-quote q {
      quotes: "“" "”" "‘" "’";
    }

    .highlighted-quote q::before {
      content: open-quote;
    }

    .highlighted-quote q::after {
      content: close-quote;
    }

    .values-section {
      text-align: center;
      margin-top: 3rem;
    }

    .values-section h3 {
      font-size: 1.8rem;
      margin-bottom: 2rem;
      color: var(--color-burgundy);
    }

    .values-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }

    .value-card {
      background: white;
      border-radius: 1rem;
      padding: 2rem;
      max-width: 340px;
      height: 250px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid var(--color-cardinal);
      position: relative;
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .value-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--color-cardinal), var(--color-burgundy));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .value-card:hover::before {
      transform: scaleX(1);
    }

    .value-card i {
      font-size: 2.5rem;
      color: var(--color-cardinal);
      margin-bottom: 1rem;
      transition: color 0.3s ease;
    }

    .value-card:hover i {
      color: var(--color-burgundy);
    }

    .value-card h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--color-burgundy);
    }

    .value-card p {
      font-size: 0.95rem;
      line-height: 1.4;
      color: #333;
    }

    .cta-about {
      text-align: center;
      margin-top: 4rem;
      font-size: 1.2rem;
      color: var(--color-burgundy);
      width: 85%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .cta-about p {
      margin-top: 1rem;
      font-style: italic;
    }

    .btn-cta {
      margin-top: 1rem;
      display: inline-block;
      background: var(--color-burgundy);
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 2rem;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn-cta:hover {
      background: var(--color-cardinal);
    }

  .btn-cta {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .btn-cta {
   margin-top: 30px;
   padding: 10px 20px;
   width: 20%;
   font-size: 17px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s ease;
   background-size: 200% auto;
   color: var(--color-white);            
   box-shadow: 0 0 20px #eee;
   border: none;
   border-radius: 5px;
   display: block;
   justify-content: center;
   cursor: pointer;
  }
  
  .btn-cta:hover {
    background-position: right center; 
  }

    .decorative-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .decorative-bg svg {
      position: absolute;
      opacity: 0.15;
      animation: float 8s ease-in-out infinite;
    }

    .decorative-bg .circle1 {
      top: 20%;
      left: 10%;
      width: 150px;
      height: 150px;
      fill: var(--color-cardinal);
    }

    .decorative-bg .circle2 {
      bottom: 10%;
      right: 5%;
      width: 200px;
      height: 200px;
      animation-delay: 2s;
      fill: var(--color-burgundy);
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    @media (max-width: 768px) {
      .about-intro {
        flex-direction: column;
      }
      .values-grid {
        flex-direction: column;
        align-items: center;
      }
    }


/*----------------------  F  O  O  T  E  R    -----------------------------------*/



footer {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    z-index: 1;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 20px;
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hexagon-wrapper {
  display: flex;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.hexagon {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  color: white;
  background: var(--color-white);
  display: flex;
  align-content: center;
  justify-content: center;
  transition: 0.5s;
  border: 2px solid #750024;
  border-radius: 50%;
}

.hexagon a  {
  z-index: 1;
  margin: auto;
  font-size: 20px;
  color: transparent;
  background: linear-gradient(45deg, #000, #bf1443);
  background-clip: text;
  -webkit-background-clip: text;
}


.hexagon:hover {
  background: linear-gradient(-180deg, white, #750024);
  transition: 0.5s;
}

.hexagon:hover a {
  transform: scale(1.15);
  transition: 0.5s;
}


.footer-privacy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-white);
    color: var(--color-white);
    width: 80%;
    height: 50px;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 20px;
}

.footer-privacy a.neg {
    color: var(--color-white);
    text-transform: uppercase;
  }
  
  .footer-privacy a.neg:hover {
    color: var(--color-cardinal);
  }
  
  .footer-privacy a:hover {
    text-decoration: underline;
  }


  /*--------------------------  R  E  S  P  O  N  S  I  V  E    -------------------------------------*/

  @media only screen and (max-width:1300px) {
    
    
}

@media only screen and (max-width:1100px) {


}

@media only screen and (max-width:1024px) {
  .button-contact {
    bottom: 10vh;
  }

  .contact-inf .form-info {
    gap: 20px;
  }

  .form-info>div {
    height: 220px;
    width: 250px;
  }
}


@media only screen and (max-width:868px) {

    .nav ul li {
      margin: 0 2px;
    }

    .nav ul li a {
      padding: 5px;
    }

    .homepage .content-banner h1 {
      font-size: 40PX;
      text-align: center;
    }

    .footer-privacy {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .footer-privacy span {
      margin: 5px;
      text-align: center;
    }

    .contact-inf {
      height: 600px;
    }

    .contact-inf .form-info {
      flex-direction: column;
      width: 100%;

  }

    .form-info>div {
      justify-content: center;
      align-items: center;
      height: 280px;
      width: 50%;
  }

    .text-content {
      max-width: 500px;
    }

    .image-content {
      max-width: 500px;
    }

    .image-content img {
      border-radius: 1px;
    }

    .decorative-bg .circle1 {
      top: 10%;
      left: 10%;
      width: 150px;
      height: 150px;
      fill: var(--color-cardinal);
    }

  .btn-cta {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .btn-cta {
   width: 40%;
  }

  .form form button {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .form form button {
   width: 40%;
  }

}

@media (max-width: 768px) {
      header i {
        display: block;
        color: white;
        font-size: 30px;
      }

      
    .nav {
      display: none;
      position: fixed;
      height: 100vh;
      width: 100%;
      top: 0;
      right: -100%;
      background-color: #750024;
    }

    .nav.active {
        display: block;
        right: 0;
        top: 100px;
        transition: .5s;
      }


    .nav ul {
      display: block;
    }

    .nav ul li {
      margin: 30px 0;
    }

    .media-tabs {
      left: calc(40% - 30%);
    }

    .media-tabs .tab {
      width: 80px;
    }
      .values-grid {
        flex-direction: column;
        align-items: center;
      }
    }

    .sub-about h2 {
        text-align: center;
    }

@media only screen and (max-width:700px) {
    .form-info>div {
      width: 60%;
  }
}


@media only screen and (max-width:600px) {
    .form-info>div {
      width: 80%;
  }

  .btn-cta {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .btn-cta {
   width: 40%;
  }

  .form form button {background-image: linear-gradient(to right, #750024 0%, #bf1443  51%, #750024  100%)}
  .form form button {
   width: 50%;
  }

  .media-tabs {
      left: calc(40% - 35%);
    }
    
}

@media only screen and (max-width:400px) {
  .media-tabs {
      left: calc(40% - 40%);
    }
    .homepage {
    height: 80vh;
}
}
