.elementor-12721 .elementor-element.elementor-element-526adbf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-12721 .elementor-element.elementor-element-35b59f5 > .elementor-widget-container{margin:0px 0px -20px 0px;padding:0px 0px 0px 0px;}.elementor-12721 .elementor-element.elementor-element-9ec12cf{--display:flex;--min-height:0vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-12721 .elementor-element.elementor-element-21bcd7a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overlay-opacity:0.03;}.elementor-12721 .elementor-element.elementor-element-21bcd7a::before, .elementor-12721 .elementor-element.elementor-element-21bcd7a > .elementor-background-video-container::before, .elementor-12721 .elementor-element.elementor-element-21bcd7a > .e-con-inner > .elementor-background-video-container::before, .elementor-12721 .elementor-element.elementor-element-21bcd7a > .elementor-background-slideshow::before, .elementor-12721 .elementor-element.elementor-element-21bcd7a > .e-con-inner > .elementor-background-slideshow::before, .elementor-12721 .elementor-element.elementor-element-21bcd7a > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-12721 .elementor-element.elementor-element-297bb12{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;}@media(min-width:768px){.elementor-12721 .elementor-element.elementor-element-9ec12cf{--content-width:1300px;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #00665e;
    --primary-dark: #00231f;
    --lime-accent: #cedc00;
    --soft-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

body {
    background-color: var(--primary-dark);
    color: var(--soft-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Tipografía Apple-Style */
h1 {
    font-size: clamp(50px, 9vw, 120px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin: 0;
}

p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-muted);
}

/* El Contenedor de Imagen de Fondo */
.hero-visual {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    /* Usamos una imagen de un hotel de lujo oscuro para el ambiente */
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070&auto=format&fit=crop'); 
}

/* Máscara de degradado para que el texto destaque */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, var(--primary-dark) 20%, rgba(0,35,31,0.4) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative; /* Para quedar sobre la máscara */
    z-index: 2;
}

.btn-lime {
    background-color: var(--lime-accent);
    color: var(--primary-dark);
    padding: 24px 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-lime:hover {
    background-color: var(--soft-white);
    transform: translateY(-2px);
}

.label-upper {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--lime-accent);
    margin-bottom: 30px;
    display: block;
}/* End custom CSS */