
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Tangerine:wght@400;700&display=swap');

/* ============================================
   PANTALLA DE BIENVENIDA (SPLASH SCREEN)
   ============================================ */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Ocultar la pantalla de bienvenida cuando tiene la clase 'hidden' */
#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    padding: 20px;
}

.splash-line-1 {
    overflow: hidden;
    margin-bottom: 0px;
}

.splash-word {
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-size: 12rem;
    font-weight: 700;
    background: linear-gradient(
        180deg,
        #FBF4C1 0%,      /* Blanco cálido */
        #F7F0A9 15%,     /* Oro pálido */
        #E9D78B 30%,     /* Oro clásico */
        #E6C15F 45%,     /* Dorado medio */
        #DAB151 65%,     /* Bronce */
        #BD8E40 85%,     /* Café profundo */
        #AE8533 100%     /* Negro */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 0.6s ease-out forwards;
    line-height: 0.9;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.splash-line-2 {
    overflow: hidden;
    margin-bottom: 0px; 
}

.splash-dash {
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    color: #C8A35B;
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 0.6s ease-out 0.2s forwards;
    margin: 0 10px;
}

.splash-word-2 {
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 0.6s ease-out 0.2s forwards;
}

.splash-line-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.splash-underline {
    width: 0;
    height: 2px;
    background-color: #C8A35B;
    animation: expandLine 0.8s ease-out 0.6s forwards;
}

/* Animación de deslizamiento hacia arriba */
@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animación de expansión de la línea */
@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 600px;
    }
}

/* Ajustes responsivos para el splash */
@media (max-width: 768px) {
    .splash-word {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .splash-word-2 {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .splash-dash {
        font-size: 1rem;
        margin: 0 5px;
    }
    
    @keyframes expandLine {
        0% {
            width: 0;
        }
        100% {
            width: 200px;
        }
    }
}

@media (max-width: 480px) {
    .splash-word {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .splash-word-2 {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .splash-dash {
        font-size: 0.8rem;
        margin: 0 3px;
    }
    
    @keyframes expandLine {
        0% {
            width: 0;
        }
        100% {
            width: 160px;
        }
    }
}

/* ============================================
   EVITAR SELECCIÓN DE TEXTO EN SPLASH SCREEN
   ============================================ */

#splash-screen,
#splash-screen * {
    user-select: none;           /* Estándar */
    -webkit-user-select: none;   /* Safari */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    cursor: default;             /* Cursor por defecto (no selección) */
}

/* También puedes aplicar a todo el body durante el splash si lo prefieres */
body.splash-active {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #0C0C0C;
    color: #fff;
}

p {
    font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
    font-weight: 50;
    line-height: 1.7;
}

h2 {
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
	font-weight: 400;
	color: #C8A35B;
	line-height: 1.8;
	text-transform: uppercase;
	letter-spacing: 8px;
	font-size: 12px;
	margin-left: 60px;
	font-style: bold;
}

.concierge-card h2,
.why-choose-card h2 {
	font-family: 'Monsterrat', Georgia, 'Times New Roman', serif;
	margin-left: 0px;
}

h3 {
	font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
	line-height: 0.4;
	letter-spacing: 0.4px;
	font-weight: 400;
	font-size: 16px;
}

.guest-owners-comments p{
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-weight: 200;
	font-size: 20px !important;
}

.name-info h4{
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
    font-weight: 50 !important;
}

.name-info h5{
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
    font-weight: 50 !important;
	letter-spacing: 0.6px;
}

.contact-content h2,
.contact-content-email h2{
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
	color: #888 !important;
    font-weight: 50 !important;
	letter-spacing: 4px !important;
	font-size: 12px !important;
}

.consultation-form label {
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
	color: #888 !important;
    font-weight: 50 !important;
	letter-spacing: 4px !important;
	font-size: 12px !important;
}

.form-group{
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif !important;
    font-weight: 20 !important;
}

.area-button p {
	letter-spacing: 2px !important;
}

.contact-content h2,
.contact-content-email h2{
	font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
	color: #888 !important;
    font-weight: 50 !important;
	letter-spacing: 4px !important;
	font-size: 12px !important;
}

footer h3 {
	font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
	line-height: 18px;
}

.logo {
	font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
	color: #fff;
	letter-spacing: 5px !important;
	font-size: 18px !important;
	font-weight: 50 !important;
	text-transform: uppercase;
	padding-left: 20px;
}

header, main, footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 1000;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

/* Aplica la animación de subrayado a los enlaces del navbar */
nav a {
  color: white;
  position: relative;
  margin-left: 20px;
  font-weight: 50;
  background: transparent !important;
  font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
  letter-spacing: 4px;
  display: inline-block; /* Necesario para que el pseudo-elemento se posicione correctamente */
  text-decoration: none;
  padding-bottom: 4px; /* Espacio para la línea */
}

/* Pseudo-elemento que crea la línea */
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #C8A35B; /* Color dorado de la marca */
  transition: width 0.3s ease; /* Animación suave */
}

/* Al hacer hover, la línea se expande al ancho completo */
nav a:hover::after {
  width: 100%;
}

/* Ajuste opcional para mantener la coherencia visual en móviles */
@media (max-width: 768px) {
  nav a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 70px;
  }
}

.botones-contenedor {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 30px;
  background: transparent !important; 
  border: none !important;
  box-shadow: none !important;
}

.section01 button {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background-color: #c5a880;
  color: #ffffff;
  border: 2px solid #c5a880;
}

.btn-primary:hover {
  background-color: #b0926a;
  border-color: #b0926a;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #c5a880;
  border-color: #c5a880;
  color: #ffffff;
}


#navbar.scrolled {
	background-color: rgba(0, 0, 0, 0.85);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
	font-size: 24px;
	font-weight: bold;
	color: white;
	background: transparent !important;
}

.section01 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/img02.jpg'); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 20px;
	color: white;
	text-align: left;
}

.section01 h2 {
  background: transparent !important;
  margin-top: 90px;
  margin-bottom: 20px;
  display: block;
}


.section01 i {
  background: transparent !important;
  margin-bottom: 70px;
  display: block;
}
 
.section01 p {
  background: transparent !important;
  margin-bottom: 70px;
  display: block;
  font-size: 18px;
  max-width: 50%;
}

.contenedor-stats {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center;
}

.item-stats {
  padding: 10px;
}

.titulos-descripcion {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 200px;
  gap: 40px;
}

.bloque-titulos {
  flex: 1;
  margin-left: 20px;
}

.texto-descripcion {
  flex: 1;
  margin: 0;
  margin-right: 120px;
}

.seccion-experiencia {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 60px 0;
}

.seccion-experiencia img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.seccion-experiencia .contenido-derecha {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seccion-experiencia .contenido-derecha h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.seccion-experiencia .contenido-derecha p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.seccion-experiencia .contenedor-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
}

.seccion-experiencia .item-stats {
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .seccion-experiencia {
    flex-direction: column;
  }
  
  .seccion-experiencia img,
  .seccion-experiencia .contenido-derecha {
    width: 100%;
  }
  
  .seccion-experiencia img {
    height: 300px;
    object-fit: cover;
  }
}

.columna-derecha h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.columna-derecha p {
  margin-top: 0;
  margin-bottom: 20px;
}

.seccion-experiencia .contenedor-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 25px;
}

.item-stats {
  text-align: left;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0;
  margin-left: 30px;
  margin-right: 30px;
}

.services {
  border: 1px solid #333;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.services:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #C8A35B;
  background-color: #333333;
  transition: background-color 0.3s;
}

.services .circle {
  width: 60px;
  height: 60px;
  background-color: #C8A35B;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.services:hover .circle {
  transform: scale(1.1);
}

.services h3 {
  margin: 15px 0;
  font-size: 1.3rem;
  color: #C8A35B;
}

.services p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services {
    padding: 25px;
  }
}

.villa-care {
  position: relative;
  background-image: url('img/img03.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
  margin: 0;
}

.villa-care::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.villa-care > * {
  position: relative;
  z-index: 2;
}

.villa-care .titulos-descripcion h2,
.villa-care .titulos-descripcion h3,
.villa-care .titulos-descripcion p,
.villa-care div:not(.titulos-descripcion) h2,
.villa-care div:not(.titulos-descripcion) p {
  color: #fff;
}

.villa-care div {
  margin-bottom: 30px;
}

.villa-care h2 {
  color: #C8A35B !important;
  margin-bottom: 15px;
}

.villa-care p {
  color: #e0e0e0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .villa-care {
    background-attachment: scroll;
    background-position: center;
  }
}

.villa-care-grid {
  display: flex;
  gap: 60px;
  margin: 60px 0;
  align-items: flex-start;
}

.villa-care-left {
  flex: 1;
  position: relative;
}

.villa-care-right {
  flex: 1;
}

.villa-care-right div:first-child {
  background: transparent;
  padding: 0;
}

.villa-care-right h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.villa-care-right p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.villa-care-right button {
  background-color: #C8A35B;
  color: #0C0C0C;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.villa-care-right button:hover {
  background-color: #b8925a;
  transform: translateY(-2px);
}

.services2 {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.services2:last-child {
  border-bottom: none;
}

.services2 h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.services2 p {
  line-height: 1.5;
  color: #ccc;
  margin: 0;
}

.services2:hover {
  padding-left: 10px;
  transition: padding-left 0.3s ease;
}

@media (max-width: 768px) {
  .villa-care-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .services2:hover {
    padding-left: 0;
  }
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 60px 0;
  margin-left: 28px;
  margin-right: 28px;
}

.concierge-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 35px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.concierge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #C8A35B;
}

.concierge-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 50px;
  text-transform: none;
  letter-spacing: 0;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
}

.concierge-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  flex-grow: 0;
}

.concierge-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.concierge-card {
  justify-content: flex-start;
}

.concierge-card:hover h2 {
  color: #d4b87a;
}

@media (max-width: 768px) {
  .concierge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .concierge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 60px 0;
  margin-left: 28px;
  margin-right: 28px;
  border: 1px solid #333;
}

.why-choose-card {
  background-color: #1a1a1a;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transition: background-color 0.3s ease;
}

.why-choose-card:nth-child(5n) {
  border-right: none;
}

.why-choose-card:nth-last-child(-n+5) {
  border-bottom: none;
}

.why-choose-card:hover {
  background-color: #222;
  border-color: #C8A35B;
  position: relative;
  z-index: 1;
}

.why-choose-card h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
  min-height: 70px;
  display: flex;
  align-items: flex-end;
}

.why-choose-card p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .why-choose-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-choose-card:nth-child(3n) {
    border-right: none;
  }
  
  .why-choose-card:nth-child(5n) {
    border-right: 1px solid #333;
  }
  
  .why-choose-card:nth-last-child(-n+3) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-card {
    border-right: none;
  }
  
  .why-choose-card {
    border-bottom: 1px solid #333;
  }
  
  .why-choose-card:last-child {
    border-bottom: none;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
  margin-left: 28px;
  margin-right: 28px;
}

.guest-owners-comments {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guest-owners-comments:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #C8A35B;
}

.guest-owners-comments > p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 25px 0;
  font-style: italic;
  flex-grow: 1;
  quotes: "“" "”" "‘" "’";
}

.guest-owners-comments > p::before {
  content: "“";
  font-size: 1.5rem;
  color: #C8A35B;
  margin-right: 5px;
}

.guest-owners-comments > p::after {
  content: "”";
  font-size: 1.5rem;
  color: #C8A35B;
  margin-left: 5px;
  vertical-align: top;
}

.guest-owners-name {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E8D5A8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.avatar-initials {
  color: #0C0C0C;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.name-info {
  flex-grow: 1;
}

.name-info h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  letter-spacing: 0.5px;
}

.name-info h5 {
  color: #888;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.name-info h5::before {
  content: "·";
  color: #C8A35B;
  font-size: 1rem;
  font-weight: bold;
  margin-right: 8px;
  display: inline-block;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-layout {
  display: flex;
  gap: 60px;
  margin: 60px 0;
}

.contact-left {
	margin-left: 28px;
	flex: 1;
}

.contact-right {
	margin-right: 28px;
    flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #333;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #1a1a1a;
  border: 1px solid #C8A35B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: #C8A35B;
  transform: scale(1.1);
}

.contact-icon span {
  font-size: 1.5rem;
  color: #C8A35B;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon span {
  color: #0C0C0C;
}

.contact-content {
  flex-grow: 1;
}

.contact-content h2,
.contact-content-email h2 {
  color: #C8A35B;
  font-size: 1.1rem;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-content p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}

.contact-content-email p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
  text-transform: none;
}

.areas-title {
  color: #C8A35B;
  font-size: 1.3rem;
  margin: 25px 0 5px 0;
  text-transform: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.area-button {
  background-color: transparent;
  border: 1px solid #333;
  border-color: #C8A35B;
  border-radius: 50px;
  padding: 5px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.area-button p {
  text-transform: uppercase;
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.area-button:hover {
  background-color: #C8A35B;
  transform: translateY(-2px);
}

.area-button:hover p {
  color: #0C0C0C;
}

.consultation-form {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 40px;
}

.consultation-form h5 {
  color: #C8A35B;
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  text-transform: none;
  letter-spacing: 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: #C8A35B;
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #C8A35B;
  color: #fff;
  padding: 10px 0;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #d4b87a;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A35B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select option {
  background-color: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  border: 1px solid #C8A35B;
  padding: 10px;
  resize: vertical;
  min-height: 100px;
}

.form-group textarea:focus {
  border-color: #d4b87a;
}

.form-button {
  background-color: #C8A35B;
  color: #0C0C0C;
  border: none;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-button:hover {
  background-color: #b8925a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 25px;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

.circle {
	width : 50px;
	height: 50px;
	background-color: #C8A35B;
	border-radius: 50%;
	margin: 10px;
}

footer {
  background-color: #0a0a0a;
  border-top: 1px solid #333;
  margin-top: 80px;
  padding: 60px 50px 20px 50px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #FFF;
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 100;
}

.footer-col h4 {
  color: #C8A35B;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
  font-weight: 300;
  font-size: 12px;
}

.footer-col p {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
  cursor: pointer;
  display: block;
}

.footer-col .practice-links p,
.footer-col a {
  display: block;
  width: 100%;
}

.footer-col p:hover {
  color: #C8A35B;
}

.footer-col:first-child p {
  line-height: 1.6;
  margin-top: 0;
}

.footer-copyright {
  border-top: 1px solid #333;
  padding-top: 25px;
  text-align: center;
}

.footer-copyright p {
  color: #666;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin: 0;
}

.footer-col a[data-link] {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
  font-weight: 50;
  line-height: 1.7;
}

.footer-col a[data-link]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #C8A35B;
  transition: width 0.3s ease;
}

.footer-col a[data-link]:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 30px 20px 30px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 20px 20px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-col a[data-link]::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================
   ANIMACIONES AL HACER SCROLL
   ============================================ */

section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Para la primera sección (hero) - animación más rápida */
.section01 {
  transition-duration: 0.6s;
}

/* Para títulos descriptivos (pueden venir desde la izquierda) */
.titulos-descripcion {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.titulos-descripcion.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Para grids de servicios (cada item con delay) */
.services-grid .services,
.concierge-grid .concierge-card,
.testimonials-grid .guest-owners-comments,
.why-choose-us-grid .why-choose-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-grid .services.visible,
.concierge-grid .concierge-card.visible,
.testimonials-grid .guest-owners-comments.visible,
.why-choose-us-grid .why-choose-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays para efecto cascada en grids */
.services-grid .services:nth-child(1) { transition-delay: 0.05s; }
.services-grid .services:nth-child(2) { transition-delay: 0.1s; }
.services-grid .services:nth-child(3) { transition-delay: 0.15s; }
.services-grid .services:nth-child(4) { transition-delay: 0.2s; }
.services-grid .services:nth-child(5) { transition-delay: 0.25s; }
.services-grid .services:nth-child(6) { transition-delay: 0.3s; }

.concierge-grid .concierge-card:nth-child(1) { transition-delay: 0.05s; }
.concierge-grid .concierge-card:nth-child(2) { transition-delay: 0.1s; }
.concierge-grid .concierge-card:nth-child(3) { transition-delay: 0.15s; }
.concierge-grid .concierge-card:nth-child(4) { transition-delay: 0.2s; }
.concierge-grid .concierge-card:nth-child(5) { transition-delay: 0.25s; }

.testimonials-grid .guest-owners-comments:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .guest-owners-comments:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .guest-owners-comments:nth-child(3) { transition-delay: 0.15s; }

.why-choose-us-grid .why-choose-card:nth-child(1) { transition-delay: 0.05s; }
.why-choose-us-grid .why-choose-card:nth-child(2) { transition-delay: 0.1s; }
.why-choose-us-grid .why-choose-card:nth-child(3) { transition-delay: 0.15s; }
.why-choose-us-grid .why-choose-card:nth-child(4) { transition-delay: 0.2s; }
.why-choose-us-grid .why-choose-card:nth-child(5) { transition-delay: 0.25s; }

/* Animación para la imagen y contenido en about */
.seccion-experiencia img,
.seccion-experiencia .contenido-derecha {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.seccion-experiencia img.visible,
.seccion-experiencia .contenido-derecha.visible {
  opacity: 1;
  transform: translateX(0);
}

.seccion-experiencia .contenido-derecha {
  transform: translateX(30px);
}

.seccion-experiencia .contenido-derecha.visible {
  transform: translateX(0);
}

/* Animación para el formulario de contacto */
.consultation-form {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.consultation-form.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animación para la columna izquierda de contacto */
.contact-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.contact-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   ESTILOS PARA ICONOS DE CONTACTO (FLATICON)
   ============================================ */

/* Estilo base para todos los iconos dentro del círculo */
.contact-icon img {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) saturate(100%) invert(71%) sepia(47%) saturate(418%) hue-rotate(352deg) brightness(91%) contrast(92%);
    transition: filter 0.3s ease;
}

/* Cambia el color del icono al hacer hover sobre el contenedor */
.contact-item:hover .contact-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Ajuste de tamaño específico si algún icono lo necesita (opcional) */
.contact-icon .whatsapp-icon {
    width: 32px;
    height: 32px;
}

.contact-icon .email-icon {
    width: 28px;
    height: 28px;
}

.contact-icon .phone-icon {
    width: 26px;
    height: 26px;
}

.logo::before,
.titulos-descripcion h2::before {
    content: "—";
    color: #C8A35B;
    margin-right: 12px;
    display: inline-block;
}

/* Estilo para el contenedor del icono */
.service-icon {
    width: 70px;
    height: 70px;
    background-color: #C8A35B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Estilo para las imágenes dentro del icono */
.service-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    transition: filter 0.3s ease;
}

/* Efecto hover: crece el círculo y el icono cambia a dorado */
.services:hover .service-icon {
    transform: scale(1.1);
    background-color: #333;
}

.services:hover .service-icon img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(47%) saturate(418%) hue-rotate(352deg) brightness(91%) contrast(92%);
}

/* ============================================
   MENÚ HAMBURGUESA PARA MÓVILES
   ============================================ */

/* Ocultar botón de menú en desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: #C8A35B;
    margin: 4px 0;
    transition: 0.3s ease;
}

/* Animación para el botón cuando está activo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Estilos responsive */
@media (max-width: 768px) {
    #navbar {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        display: block !important;     /* Forzar block para que ocupen toda la línea */
        margin: 20px 0 !important;     /* Margen vertical, no horizontal */
        text-align: center;
        font-size: 1.1rem;
        letter-spacing: 3px;
        color: white;
        text-decoration: none;
        font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
        padding: 8px 20px;
        width: 100%;
    }
    
    /* Evitar scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Evitar scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }
	
	.section01 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/img02.jpg'); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-position-y: 50px;
	padding: 100px 20px;
	color: white;
	text-align: left;
	}
	
}

@media (min-width: 769px) {
    nav {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .bloque-titulos h3,
    .contenido-derecha h3,
    .contenedor-stats	{
		line-height: 25px;
    }
	
    .bloque-titulos h2 {
        font-size: 12px;
		margin-left: 10px;
		width: 100%;
    }
	
	
    .services-grid	h3 {
        font-size: 16px;
        margin-top: 10px;
		line-height: 10px;
    }
   .titulos-descripcion {
        flex-direction: column;
        margin-top: 80px;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* Ajustar márgenes */
    .bloque-titulos {
        margin-left: 0;
        width: 100%;
        text-align: left;
    }
    
    /* h2 arriba, h3 abajo (separados verticalmente) */
    .bloque-titulos h2 {
        margin-bottom: 12px;
        margin-left: 0;  /* Quitar el margin-left de 60px en móvil */
        font-size: 10px;  /* Ligeramente más pequeño */
        letter-spacing: 6px;
    }
    
    .bloque-titulos h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    /* Ajustar el párrafo de descripción */
    .texto-descripcion {
        margin-right: 0;
        width: 100%;
        font-size: 14px;
    }

}

/* ============================================
   MODAL DE ÉXITO
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;  /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #1a1a1a;
    border: 1px solid #C8A35B;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.4s ease;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: #C8A35B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0C0C0C;
}

.modal-content h2 {
    color: #C8A35B;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    margin-left: 0;
}

.modal-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.modal-content p:last-of-type {
    margin-bottom: 25px;
}

.modal-btn {
    background-color: #C8A35B;
    color: #0C0C0C;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background-color: #b8925a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 163, 91, 0.3);
}

/* Animaciones del modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ajuste para móviles */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-content h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   MENSAJE DE ÉXITO DEL FORMULARIO
   ============================================ */

.success-message {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #C8A35B;
    color: #0C0C0C;
    text-align: center;
    font-weight: 600;
    font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
    letter-spacing: 0.5px;
    animation: fadeInSuccess 0.5s ease;
    display: none;
}

.success-message.show {
    display: block;
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ESTILOS PARA REDES SOCIALES EN FOOTER
   ============================================ */

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: 'Google Sans Flex', Georgia, 'Times New Roman', serif;
    font-weight: 50;
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
}

/* Efecto de línea dorada al hacer hover, igual que el resto de enlaces */
.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C8A35B;
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

.social-link:hover {
    color: #C8A35B;
}

.social-link svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .social-links {
        align-items: center;
    }
    
    .social-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
}