* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:#000;
    color:#fff;
  color: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
}

#propiedades {
  padding-top: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99999;
  background: transparent;
  transition: all 0.3s ease;
}

/* Dropdown */
.dropdown {
  position: relative;
}



.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;

  background: rgba(0, 0, 0, 0.85);

  list-style: none;
  padding: 0;
  margin: 0;

  border-radius: 10px;
  overflow: hidden;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1000;
}

/* 👇 ESTO ES LO IMPORTANTE */
.submenu li a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
}

.submenu li a:hover {
  background: rgba(255,255,255,0.12);
  color: #d4af37;
}

/* ESTADO SCROLLED */
.header.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,.15);
  box-shadow: 0 8px 25px rgba(0,0,0,.5);
}

/* ASEGURA VISIBILIDAD DEL MENÚ */
.header.scrolled .menu-item a {
  color: white !important;
  text-shadow: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo-container img {
  height: 70px;
  object-fit: contain;
}

/* ================= MENU ================= */

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu-item a {
  text-decoration: none;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,.7);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 10px;
  display: inline-block;
  transition: all .3s ease;
}

.menu-item a:hover {
  color: #d4af37;
  text-shadow:
    0 0 10px rgba(212,175,55,.6),
    0 0 20px rgba(212,175,55,.4);
} 

/* SECCIÓN ACTIVA */
.menu-item.active a {
  color: #d4af37;
  text-shadow:
    0 0 10px rgba(212,175,55,.6),
    0 0 20px rgba(212,175,55,.4);
}

/* ================= HAMBURGUESA ================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1100;
}

.menu-toggle i{
    color:#d4af37;
}

.menu-toggle span {
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
}

/* ================= HERO ================= */

.hero {
  padding-top: 0;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('img/banner.webp');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  max-width: 1000px;
  margin: 0 auto;

  /* 👇 ESTE ES EL FIX REAL DEL AMONTONAMIENTO */
  padding: 140px 20px 80px;
}

/* ===== DECORACIÓN ===== */

.hero-decoracion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  color: #d4af37;
}

.hero-decoracion i {
  font-size: 28px;
}

.hero-decoracion span {
  width: 140px;
  height: 1px;
  background: #d4af37;
}

/* ===== TEXTO ===== */

.hero-texto h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}

.hero-subtitulo {
  display: inline-block;
  border: 1px solid #d4af37;
  padding: 12px 30px;
  color: white;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 35px;
}

/* frase principal */
.hero-texto p {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ===== BOTÓN (SEPARACIÓN CLAVE) ===== */

.btn-contacto {
  display: inline-block;
  background: #d4af37;
  color: #111;
  padding: 16px 45px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;

  margin-top: 10px; /* 👈 evita que se “pegue” */
  transition: all .3s ease;
}

.btn-contacto:hover {
  background: #e0bc58;
  transform: translateY(-3px);
}

/* BOTÓN */
.btn-contacto {
  display: inline-block;
  background: #d4af37;
  color: #111;
  padding: 16px 45px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-contacto:hover {
  background: #e0bc58;
  transform: translateY(-3px);
}

/* ===== PROPIEDADES PREMIUM (RESTORE CORRECTO) ===== */

#propiedades {
  scroll-margin-top: 30px;
}

.propiedades-premium {
  padding: 40px 0 80px;
  background: #050505;
}

.titulo-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 20px;  
}

/* ===== SUBTÍTULO CON LÍNEAS (SELECCIÓN EXCLUSIVA) ===== */

.subtitulo-premium {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #d4af37;
  font-size: .9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  gap: 20px;
}

/* líneas */
.subtitulo-premium::before,
.subtitulo-premium::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #d4af37;
  display: inline-block;
}

.titulo-premium {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 15px;
}

.descripcion-premium {
  max-width: 700px;
  margin: 10px auto 40px;
  text-align: center;
  color: #a8a8a8;
  font-size: 1.1rem;
  line-height: 1.9;
}

.descripcion-premium span {
  color: #d4af37;
  font-weight: 600;
}

/* ===== CARRUSEL ===== */

.carousel-premium {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  transition: transform 0.5s ease;
  will-change: transform;

  padding: 0;   /* 👈 importante */
  margin: 0;
}

/* ===== CARD PREMIUM (ESTILO ORIGINAL RESTAURADO) ===== */

.card-premium {
   flex: 0 0 calc((100% - 36px) / 3);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 400px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
   clip-path: inset(0);
}

.card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: .5s ease;
}

.card-premium:hover img {
  transform: scale(1.08);
}

/* ===== OVERLAY ===== */

.overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  /* 🔥 MENOS ESPACIO INTERNO */
  padding: 14px 18px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.6),
    rgba(0,0,0,0)
  );
}

.overlay-card h3 {
  margin: 4px 0 4px;
  line-height: 1.05;
}

.precio-card {
  margin-bottom: 10px;
}

.ubicacion {
  margin-bottom: 1px;
  display: inline-block;
}

.precio-card {
  color: #d4af37;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.overlay-card a {
  display: inline-block;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 5px;
  transition: .3s;
}

.overlay-card a:hover {
  color: #d4af37;
}

/* ===== FLECHAS (NO SE ELIMINAN) ===== */

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #d4af37;
  font-size: 22px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.flecha:hover {
  transform: translateY(-50%) scale(1.1);
}

.flecha-izq { left: 10px; }
.flecha-der { right: 10px; }


/* ================= EQUIPO ================= */

#equipo{
    scroll-margin-top: 70px;
}


.equipo-container{
  width:100%;
  padding:0 50px;
  background:#050505; /* 👈 ESTE ES EL FIX */
}

.equipo-container h2 {
  color: #fff;
  font-size: 3.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}

.galeria-equipo{
    max-width:1200px;
    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.miembro{
  position: relative;
  height:350px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    overflow:hidden;
    transition:.4s ease;
}

.miembro img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.miembro:hover{
    border-color:#d4af37;
    transform:translateY(-5px);
}

.miembro:hover img{
  transform:scale(1.05);
}

.info-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.85) 40%,
    rgba(0,0,0,0) 100%
  );

  color:white;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  text-align:center;

  padding:30px 20px;

  opacity:0;

  transition:.4s ease;
}

.info-overlay h3,
.info-overlay p{
  transform:translateY(15px);
  transition:.4s ease;
}

.miembro:hover .info-overlay{
  opacity:1;
}

.miembro:hover .info-overlay h3,
.miembro:hover .info-overlay p{
  transform:translateY(0);
}

.miembro:hover .info-overlay {
  opacity: 1;
}

.info-overlay h3{
  font-size:1.5rem;
  margin-bottom:8px;
  color:white;
}

.cargo{
  display:block;

  color:#d4af37;

  font-size:.8rem;

  letter-spacing:2px;

  margin-bottom:18px;
}

.telefono{
  font-size:.95rem;
  margin-bottom:20px;
}

.frase{
  font-style:italic;
  color:rgba(255,255,255,.85);
  line-height:1.7;
  font-size:.95rem;
}

/* ================= REDES ================= */

.redes-flotantes {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.redes-flotantes a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}

.redes-flotantes a:hover {
  transform: scale(1.1);
}

.icon-whatsapp {
  background-color: #25d366;
  background-image: url('img/whatsapp.svg');
}

.icon-tiktok {
  background-color: #fff;
  background-image: url('img/tiktok.svg');
}

.icon-instagram {
  background-color: #d6249f;
  background-image: url('img/instagram.svg');
}

/* ================= FOOTER ================= */

footer {
    background:
    linear-gradient(
      rgba(0,0,0,.82),
      rgba(0,0,0,.82)
    );
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  text-align: center;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .header{
    height: 60px;
  }

  .navbar{
    height: 60px;
    padding: 0 15px;
  }

  .logo-container img{
    height: 45px;
  }

  .hero-content{
    padding: 50px 20px 60px;
  }

   .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 220px;
    height: calc(100vh - 70px);
    background: #111;
    padding: 20px;
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-texto h1 {
    font-size: 2.8rem;
  }

  .galeria-equipo {
    grid-template-columns: repeat(2, 1fr);
  }

   .titulo-wrapper{
    margin-bottom: 10px;
  }

  .subtitulo-premium{
    font-size: .75rem;
    letter-spacing: 2px;
    gap: 10px;
  }

  .subtitulo-premium::before,
  .subtitulo-premium::after{
    width: 40px;
  }

  .titulo-premium{
    font-size: 2.5rem;
    margin-top: 8px;
  }

  .descripcion-premium{
    font-size: .95rem;
    line-height: 1.6;
    margin: 5px auto 20px;
    padding: 0 20px;
  }

  .card-premium{
    flex: 0 0 85%;
    height: 280px;
    border-radius: 20px;
  }

  .carousel-premium{
    padding: 0 15px;
  }

  .card-premium{
    flex: 0 0 calc(100% - 40px);
    height: 280px;
  }

  .alianzas-section{
    padding: 30px 15px 40px !important;
  }

  .alianzas-header{
    margin-bottom: 25px !important;
  }

  .alianzas-header h2{
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-bottom: 10px !important;
  }

  .alianzas-header p{
    font-size: .95rem !important;
    line-height: 1.5;
  }

  .alianzas-subtitulo{
    font-size: .75rem !important;
    margin-bottom: 10px !important;
  }

  .alianzas-subtitulo::before,
  .alianzas-subtitulo::after{
    width: 40px !important;
  }

}

/* ===== ALIANZAS MOBILE ===== */
@media (max-width:768px){

  .alianzas-section{
    padding:40px 15px 50px;
  }

  .alianzas-header h2{
    font-size:2.5rem;
    line-height:1.1;
  }

  .alianzas-header p{
    font-size:.95rem;
  }

  .alianzas-grid{
    display:flex !important;
    flex-wrap:nowrap !important;

    overflow-x:auto;

    gap:20px;

    padding:0 15px;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    grid-template-columns:none !important;
  }

  .alianzas-grid::-webkit-scrollbar{
    display:none;
  }

   .alianza-card{
    flex:0 0 78% !important;

    width:78% !important;
    max-width:78% !important;
    min-width:78% !important;

    margin:0 auto !important;
  }

  .alianza-img{
    height:130px;
  }

  .alianza-content{
    padding:14px;
  }

  .alianza-logo,
  .alianza-logo-condado{
    width:100px;
    margin-bottom:8px;
  }

  .alianza-content h3{
    font-size:1.2rem;
    margin-bottom:5px;
  }

  .alianza-content p{
    font-size:.85rem;
    line-height:1.4;
    margin-bottom:10px;
  }

  .btn-alianza{
    padding:8px 14px;
    font-size:.8rem;
  }

}


@media (max-width: 992px) {

  .alianzas-grid {
    grid-template-columns: 1fr;
  }

  .alianzas-header h2 {
    font-size: 3rem;
  }
}

@media (max-width:768px){

  footer{
    padding:20px 15px !important;
  }

  footer img{
    width:90px !important;
    margin-bottom:8px !important;
  }

  footer p{
    font-size:.75rem !important;
    line-height:1.4 !important;
    margin:0 !important;
  }

}


/* ==================================
   ALIANZAS COMERCIALES
================================== */

.alianzas-section {

  position: relative;

  padding: 70px 20px 120px;

  background:
    linear-gradient(
      rgba(0,0,0,.82),
      rgba(0,0,0,.82)
    ),
    url("img/fondo-lujo.jpg");

  background-size: cover;
  background-position: center;
}

.alianzas-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.alianzas-subtitulo {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #d4af37;
  font-size: .9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;

  gap: 20px;
  margin-bottom: 20px;
}

.alianzas-subtitulo::before,
.alianzas-subtitulo::after {
  content: "";
  width: 120px;
  height: 1px;
  background: #d4af37;
  display: inline-block;
}

.alianzas-header h2 {

  font-family: "Cormorant Garamond", serif;

  font-size: 4.8rem;

  line-height: 1.05;

  font-weight: 500;

  color: white;

  margin-bottom: 25px;
}

.alianzas-header h2 span {

  display: block;

  color: #d4af37;

  font-style: italic;
}

.alianzas-header p {

  color: rgba(255,255,255,.85);

  font-size: 1.2rem;

  line-height: 1.8;
}

.alianzas-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.alianza-card {

  background: rgba(0,0,0,.65);

  border: 1px solid rgba(212,175,55,.30);

  border-radius: 25px;

  overflow: hidden;

  backdrop-filter: blur(8px);

  transition: .4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 340px;
  margin: 0 auto;

  flex:0 0 70% !important;
}

.alianza-card:hover {

  transform: translateY(-8px);

  border-color: #d4af37;
}

.alianza-img {

  height: 180px;

  overflow: hidden;
}

.alianza-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .5s ease;
}

.alianza-card:hover img {
  transform: scale(1.08);
}

.alianza-content {

  text-align: center;

  padding: 20px 20px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.alianza-logo {

  width: 180px;

  height: 80px;
  height: auto;
    display: block;
    margin: 0 auto 20px;

  object-fit: contain;

  margin-bottom: 20px;
}

.alianza-logo-condado{
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.alianza-content h3 {

  font-family: "Cormorant Garamond", serif;

  color: white;

  font-size: 1.8rem;
  margin-bottom: 12px;

  letter-spacing: 1px;
  min-height: 70px;
}

.alianza-content p {

  color: rgba(255,255,255,.85);

  line-height: 1.8;

  min-height: auto;
  margin-bottom: 20px;
}

.btn-alianza {

  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 12px;

  color: white;

  text-decoration: none;

  border: 1px solid #d4af37;

  padding: 14px 28px;

  border-radius: 12px;

  transition: .3s ease;
  margin-top: auto;
}


.btn-alianza:hover {

  background: #d4af37;

  color: #111;
}

@media (max-width:768px){

  /* ===== SERVICIOS ===== */

  .servicios-section{
    padding:35px 15px 40px !important;
  }

  .servicios-header{
    margin:0 auto 20px !important;
  }

  .servicios-header h2{
    font-size:2.4rem !important;
    margin:8px 0 !important;
  }

  .servicios-header p{
    font-size:.9rem !important;
    line-height:1.4 !important;
    padding:0 10px !important;
  }

  .servicios-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:15px !important;
  }

  .servicios-cards{
    grid-template-columns:repeat(2,1fr) !important;
    gap:10px !important;
  }

  .servicio-card{
    padding:14px 10px !important;
    border-radius:12px !important;
  }

  .servicio-card i{
    font-size:1.2rem !important;
    margin-bottom:8px !important;
  }

  .servicio-card h3{
    font-size:.85rem !important;
    margin-bottom:6px !important;
    line-height:1.2 !important;
  }

  .servicio-card p{
    font-size:.75rem !important;
    line-height:1.3 !important;
  }

  .servicios-imagen{
    height:180px !important;
    border-radius:15px !important;
  }

  .servicios-imagen img{
    object-position:50% 30% !important;
    object-fit:cover;
  }

}

@media (max-width:768px){

  /* ===== EQUIPO ===== */

 @media (max-width:768px){

  .equipo-container .titulo-premium{
    font-size:2.2rem !important;
    line-height:1.1 !important;
    margin-top:8px !important;
  }

  .equipo-container .descripcion-premium{
    font-size:.9rem !important;
    line-height:1.4 !important;
    margin:5px auto 20px !important;
    padding:0 10px !important;
  }

  .equipo-container .subtitulo-premium{
    font-size:.75rem !important;
    letter-spacing:2px !important;
  }

  .equipo-container .subtitulo-premium::before,
  .equipo-container .subtitulo-premium::after{
    width:40px !important;
  }

}
@media (max-width:768px){

  /* GRID */
  .galeria-equipo{
    grid-template-columns:repeat(2,1fr) !important;
    gap:8px !important;
  }

  /* CARD */
  .miembro{
    height:210px !important;
    border-radius:12px !important;
  }

  .miembro img{
    height:210px !important;
    object-fit:cover !important;
    object-position:center top !important;
  }

  /* OVERLAY */
  .info-overlay{
    padding:8px !important;
  }

  .info-overlay h3{
    font-size:.85rem !important;
    margin-bottom:2px !important;
  }

  .cargo{
    font-size:.6rem !important;
    letter-spacing:.5px !important;
  }

  .telefono{
    font-size:.65rem !important;
    margin-top:4px !important;
  }

  /* OCULTAR FRASES EN MOVIL */
  .frase{
    display:none !important;
  }

}

}
/* ==========================
   SERVICIOS
========================== */

.servicios-section{

    background:#050505;

    padding:70px 20px 80px;

    color:white;
}

.servicios-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;
}

.servicios-header h2{

    font-family:"Cormorant Garamond",serif;

    font-size:4rem;

    font-weight:500;

    margin:20px 0;
}

.servicios-header p{

    color:rgba(255,255,255,.75);

    line-height:1.8;
}

.servicios-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items:stretch;
}

.servicios-cards{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    height:100%;
}

.servicio-card{
    background:#0d0d0d;
    border:1px solid rgba(212,175,55,.25);
    border-radius:16px;
    padding:25px;
    transition:.4s;
    text-align: center;
}

.servicio-card:hover{

    transform:translateY(-5px);

    border-color:#d4af37;
}

.servicio-card i{
  display: block;
    font-size:1.8rem;
    margin-bottom:15px;
    margin:0 auto 15px;
    color:#d4af37;
}

.servicio-card h3{
    margin-bottom:10px;
    font-size:1.15rem;
}

.servicio-card p{

    color:rgba(255,255,255,.7);
    font-size:.95rem;
    line-height:1.5;
}

.servicios-imagen{

    height:100%;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.25);

    display:flex;
}

.servicios-imagen img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;
}

.servicios-cta{

    max-width:1300px;

    margin:40px auto 0;

    border:1px solid rgba(212,175,55,.25);

    border-radius:18px;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;
}

.cta-texto{

    display:flex;

    align-items:center;

    gap:20px;
}

.cta-texto i{

    color:#d4af37;

    font-size:2rem;
}

.btn-servicios{

    background:#d4af37;

    color:#111;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;
}

.btn-servicios:hover{

    transform:translateY(-3px);
}