* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1.6;
}

h2 {
    font-family: 'Montserrat', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('img/frente.webp') center/cover no-repeat;
    position: relative;
}

/* Oscurecer un chin como el original */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

/* Logo centrado */
.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-logo img {
    width: 120px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}


/* SECTION */
.doral-section {
    position: relative;
    padding: 120px 60px;
    color: #111;

    background: url('img/bg-section.webp') center/cover no-repeat;
    background-attachment: fixed; /* 🔥 clave */
}

/* overlay blanco suave */
.doral-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}

/* contenido encima */
.doral-content {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* LEFT */
.left h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.line {
    width: 60px;
    height: 2px;
    background: #111;
    margin: 20px 0;
}

.desc {
    max-width: 600px;
    margin-bottom: 50px;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    padding: 30px 0;
}

.stat h3 {
    font-size: 50px;
    font-weight: 700;
}

.stat span {
    font-size: 12px;
    letter-spacing: 2px;
}

/* RIGHT */
.right {
    background: rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 10px;
}

.right h4 {
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.right ul {
    list-style: none;
}

.right li {
    margin-bottom: 15px;
    font-size: 15px;
}

.right i {
    margin-right: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .doral-content {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* SECTION */
.section {
    padding: 80px 60px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* GRID INFO */
.info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.puntos {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
}

.puntos ul {
    list-style: none;
}

.puntos li {
    margin-bottom: 10px;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 40px;
}

.stat h3 {
    font-size: 40px;
}

.stat p {
    font-size: 12px;
    letter-spacing: 2px;
}

/* AMENIDADES */
.amenidades {
    background: #0b1d13;
    color: white;
}

.amenidades h2 {
    font-size: 60px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* contenedor */
.img-wrap {
    overflow: hidden;
}

/* imagen */
.card img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* 🔥 zoom */
.card:hover img {
    transform: scale(1.08);
}

/* texto */
.card span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 22px;
    font-weight: 600;
    z-index: 2;
}

/* overlay oscuro leve */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.4s;
}

.card:hover::after {
    background: rgba(0,0,0,0.35);
}

/* PLANOs */
.planos-section {
    background: #f5f5f5;
    padding: 100px 60px;
}

.plano-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.plano-img img {
    width: 100%;
    border-radius: 6px;
}

/* TEXTO */
.plano-info {
    max-width: 400px;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    display: block;
    margin-bottom: 20px;
}

.plano-info ul {
    list-style: none;
}

.plano-info li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* línea */
.divider {
    height: 1px;
    background: #ccc;
    margin-top: 30px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .plano-item {
        grid-template-columns: 1fr;
    }

    .plano-info {
        max-width: 100%;
    }
}

/* VIDEO */
.video {
    margin-top: 30px;
}

.video iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.galeria-btn {
    text-align: center;
    margin: 40px 0 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1.5px solid #1b2b1f;
    border-radius: 30px;
    text-decoration: none;
    color: #1b2b1f;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1b2b1f;
    color: white;
}

/* CONTACTO */
.contacto {
    background: #dbe5d3;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
}

button {
    padding: 12px 25px;
    border-radius: 25px;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;
}

.contacto-section {
    background: #cfdcc8;
    padding: 80px 60px;
}

/* línea superior */
.top-line {
    height: 1px;
    background: #2e3b2f;
    margin-bottom: 40px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

/* 🔥 línea vertical */
.contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #2e3b2f;
    transform: translateX(-50%);
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text {
    margin: 20px 0 30px;
    max-width: 400px;
    color: #333;
}

/* botón más protagonista */
.btn-contacto {
    display: inline-block;
    padding: 14px 28px;
    border: 1.5px solid #1b2b1f;
    border-radius: 30px;
    text-decoration: none;
    color: #1b2b1f;
    font-weight: 500;
    transition: 0.3s;
    width: fit-content;
}

.btn-contacto:hover {
    background: #1b2b1f;
    color: white;
    transform: translateY(-2px);
}

.mini-line {
    width: 60px;
    height: 3px;
    background: #2e3b2f;
    margin: 20px 0;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #333;
}

.phone {
    font-weight: 700;
    margin-top: 15px;
}

.email {
    margin-top: 10px;
}

/* RIGHT */
.form-title {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    background: #eee;
}

textarea {
    height: 120px;
}

/* botón */
.contact-right .btn-outline {
    margin-top: 10px;
}

.footer-redes {
    background: #cfdcc8;
    padding: 40px 60px 60px;
}

/* iconos */
.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6bbf59; /* verde */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

/* hover 🔥 */
.socials a:hover {
    transform: translateY(-3px);
    background: #1b2b1f;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid::before {
        display: none;
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .info,
    .planos,
    .contact-grid,
    .grid,
    .stats {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero {
        padding: 20px;
    }

    .section {
        padding: 40px 20px;
    }
}
