:root {
    --bg: #ffffff;
    --bg-soft: #f8f8f6;
    --panel: #ffffff;
    --text: #1f1f1f;
    --muted: #666666;
    --line: rgba(0, 0, 0, 0.10);
    --gold: #c9a96b;
    --gold-soft: #e5c58a;
    --white: #ffffff;
    --max: 1180px;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(92%, var(--max));
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
    background: #ffffff;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #222222;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    font-size: 0.98rem;
    color: var(--muted);
    transition: 0.25s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.nav a.active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

/* HERO HOME */

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    background:
            linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
            url("mirandanueva.jpg") center center / cover no-repeat;
}

.hero-inner {
    padding: 80px 0;
    max-width: 720px;
}

.eyebrow {
    color: #f5f2eb;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 20px;
}

.hero h1,
.page-hero h1,
.section-title,
.card-title,
.subheading,
.page-hero h2,
.page-hero h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    margin-bottom: 18px;
    color: #f5f2eb;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.hero p {
    color: #f5f2eb;
    max-width: 620px;
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.hero-actions a{
    padding:12px 22px;
    border-radius:30px;
    font-size:0.95rem;
    font-weight:500;
    letter-spacing:0.5px;
}

/* Discover More */

.hero-actions a:first-child{
    background:#ffffff;
    color:#111111;
    border:1px solid rgba(0,0,0,0.08);
}

.hero-actions a:first-child:hover{
    background:#f5f5f5;
}

/* Get in Touch */

.hero-actions a:last-child{
    background:var(--gold);
    color:#111111;
    border:none;
}

.hero-actions a:last-child:hover{
    background:var(--gold-soft);
}

/* PAGE HERO */

.page-hero {
    padding: 90px 0 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 20px;
    color: #111111;
}

.page-hero p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.page-hero h2 {
    margin-top: 50px;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #111111;
}

.page-hero h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.6rem;
    color: #222222;
}

/* POLICY LIST */

.policy-list {
    max-width: 750px;
    margin: 10px auto 30px;
    text-align: left;
}

.policy-list li {
    padding: 10px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}

/* RATES LIST */

.rates-list {
    width: min(100%, 720px);
    margin: 0 auto 36px;
    padding: 0;
    border-top: 1px solid var(--line);
}

.rates-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 1.05rem;
}

.rates-list li span:first-child {
    text-align: left;
}

.rates-list li span:last-child {
    color: #a8823d;
    font-weight: 600;
    white-space: nowrap;
}

/* IMAGE BOX */

.image-box {
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--panel);
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CONTACT */

.contact-section {
    max-width: 600px;
    margin: 40px auto 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 0.9rem;
    color: var(--muted);
    text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 107, 0.12);
}

.contact-form button {
    margin-top: 10px;
    padding: 12px;
    background: var(--gold);
    color: #111111;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: var(--gold-soft);
}
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    z-index:1000;
}
/* FOOTER */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 30px 0 40px;
    color: var(--muted);
    text-align: center;
    margin-top: 80px;
    background: #ffffff;
}
.fade-in{

    opacity:0;
    transform:translateY(20px);
    animation:fadeIn 1s forwards;

}

@keyframes fadeIn{

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* RESPONSIVE */

@media (max-width: 980px) {
    .nav {
        position: absolute;
        top: 82px;
        right: 4%;
        width: min(320px, 92vw);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .rates-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
@media (max-width:768px){

    .hero{

        background:
                linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                url("celular miranda.jpg") center center / cover no-repeat;

    }

}