:root {

    --red: #D71920;
    --yellow: #FFC400;

    --black: #0B0B0F;
    --black-soft: #111116;
    --black-card: #15151b;

    --white: #F5F5F5;
    --gray: #A7A7A7;
    --gray-dark: #676767;

    --border: rgba(255,255,255,0.10);

    --font-title: "Bebas Neue", Impact, "Arial Black", sans-serif;
    --font-body: "Oswald", Arial, sans-serif;

}


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


html {
    scroll-behavior: smooth;
}


body {

    background: var(--black);

    color: var(--white);

    font-family: var(--font-body);

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


.section-tag {

    color: var(--yellow);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;

}


.section-heading {

    text-align: center;

    margin-bottom: 55px;

}


.section-heading h2 {

    font-family: var(--font-title);

    font-size: clamp(3rem, 7vw, 5.5rem);

    line-height: .9;

}


.section-heading h2 span {

    color: var(--red);

}


.section-heading p:last-child {

    color: var(--gray);

    margin-top: 18px;

}


/* =========================
   BOTONES
========================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    font-family: var(--font-title);

    font-size: 1.15rem;

    letter-spacing: 1px;

    transition: .25s ease;

}


.btn-primary {

    background: var(--red);

    color: white;

}


.btn-primary:hover {

    background: #f02027;

    transform: translateY(-3px);

}


.btn-whatsapp {

    background: var(--yellow);

    color: #050505;

}


.btn-whatsapp:hover {

    background: #ffd43d;

    transform: translateY(-3px);

}


.btn-large {

    min-height: 60px;

    font-size: 1.3rem;

}


/* =========================
   HEADER
========================= */

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.8),
        transparent
    );

}


.header-content {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo img {

    width: 125px;

}


.nav {

    display: flex;

    align-items: center;

    gap: 32px;

    font-size: .95rem;

    font-weight: 600;

}


.nav a {

    transition: .2s;

}


.nav a:hover {

    color: var(--yellow);

}


.nav-button {

    background: var(--red);

    padding: 13px 20px;

}


.menu-button {

    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 28px;

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 850px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.78) 45%,
            rgba(0,0,0,.30) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

    max-width: 760px;

}


.anniversary-badge {

    width: 100px;

    height: 100px;

    border: 3px solid var(--yellow);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    background: rgba(0,0,0,.7);

}


.anniversary-badge span {

    font-family: var(--font-title);

    color: var(--red);

    font-size: 3.8rem;

    line-height: .75;

}


.anniversary-badge small {

    color: var(--yellow);

    font-weight: 700;

    letter-spacing: 2px;

}


.hero-top {

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: 4px;

    color: var(--yellow);

    margin-bottom: 12px;

}


.hero h1 {

    font-family: var(--font-title);

    font-size: clamp(4.5rem, 10vw, 8.5rem);

    line-height: .78;

    letter-spacing: 2px;

}


.hero h1 span {

    display: block;

    color: var(--red);

}


.hero-description {

    max-width: 520px;

    margin-top: 30px;

    color: #ddd;

    font-size: 1.15rem;

    line-height: 1.5;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.hero-location {

    margin-top: 25px;

    color: #ccc;

}


/* =========================
   10 AÑOS
========================= */

.anniversary-section {

    padding: 110px 0;

    background:

        linear-gradient(
            135deg,
            #0B0B0F,
            #15151b
        );

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.anniversary-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 80px;

}


.anniversary-number {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

}


.number {

    font-family: var(--font-title);

    font-size: clamp(10rem,20vw,18rem);

    line-height: .7;

    color: var(--red);

    -webkit-text-stroke: 2px var(--yellow);

}


.number-text {

    display: flex;

    flex-direction: column;

}


.number-text strong {

    font-family: var(--font-title);

    color: var(--yellow);

    font-size: 3rem;

}


.number-text span {

    letter-spacing: 3px;

}


.anniversary-copy h2 {

    font-family: var(--font-title);

    font-size: clamp(3rem,6vw,5.5rem);

    line-height: .9;

    margin-bottom: 25px;

}


.anniversary-copy h2 span {

    color: var(--yellow);

    display: block;

}


.anniversary-copy p:not(.section-tag) {

    color: var(--gray);

    font-size: 1.1rem;

    line-height: 1.7;

    max-width: 600px;

}


.signature {

    display: inline-block;

    margin-top: 30px;

    color: var(--red);

    font-weight: 700;

    letter-spacing: 2px;

}


/* =========================
   PROMO
========================= */

.promo-section {

    padding: 110px 0;

}


.promo-main {

    display: grid;

    grid-template-columns: 1fr .45fr;

    min-height: 390px;

    background:

        linear-gradient(
            120deg,
            rgba(215,25,32,.95),
            rgba(130,10,15,.95)
        );

}


.promo-content {

    padding: 55px;

}


.promo-label {

    background: var(--yellow);

    color: #000;

    padding: 8px 15px;

    font-weight: 800;

    display: inline-block;

}


.promo-content h3 {

    font-family: var(--font-title);

    font-size: clamp(3rem,6vw,5.5rem);

    line-height: .85;

    margin-top: 20px;

}


.promo-content h3 strong {

    color: var(--yellow);

    display: block;

}


.promo-content p {

    max-width: 500px;

    margin: 20px 0;

    color: rgba(255,255,255,.85);

    line-height: 1.5;

}


.promo-price {

    display: flex;

    align-items: baseline;

    gap: 15px;

    margin-bottom: 25px;

}


.promo-price strong {

    font-family: var(--font-title);

    font-size: 4.5rem;

    color: var(--yellow);

}


.promo-extra {

    background: var(--yellow);

    color: #000;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.promo-extra strong {

    font-family: var(--font-title);

    font-size: 5rem;

    line-height: .9;

}


/* =========================
   PRECIOS
========================= */

.prices-section {

    padding: 110px 0;

    background: #101014;

}


.pricing-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 15px;

}


.price-card {

    position: relative;

    background: var(--black-card);

    border: 1px solid var(--border);

    padding: 30px 22px;

    text-align: center;

    transition: .3s;

}


.price-card:hover {

    transform: translateY(-8px);

    border-color: var(--red);

}


.price-card.featured {

    border: 2px solid var(--yellow);

}


.featured-label {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    background: var(--yellow);

    color: #000;

    padding: 7px;

    font-size: .75rem;

    font-weight: 900;

}


.featured .price-top {

    margin-top: 25px;

}


.price-top span {

    font-size: .75rem;

    letter-spacing: 2px;

    color: var(--gray);

}


.price-top h3 {

    font-family: var(--font-title);

    font-size: 2.8rem;

}


.price {

    font-family: var(--font-title);

    font-size: 5.5rem;

    line-height: .9;

    color: var(--red);

    margin: 20px 0;

}


.price small {

    font-family: var(--font-body);

    font-size: 1.5rem;

}


.price-divider {

    height: 1px;

    background: var(--border);

    margin-bottom: 20px;

}


.price-benefit {

    font-weight: 700;

}


.couple-price {

    margin: 20px 0;

    display: flex;

    flex-direction: column;

}


.couple-price strong {

    font-family: var(--font-title);

    color: var(--yellow);

    font-size: 2.5rem;

}


.couple-price span {

    font-size: .75rem;

    color: var(--gray);

}


.gift {

    font-size: 3rem;

}


.extra-months {

    display: block;

    color: var(--yellow);

    font-family: var(--font-title);

    font-size: 2.5rem;

}


.membership {

    display: block;

    color: var(--gray);

    font-size: .75rem;

}


.price-button {

    display: block;

    background: var(--red);

    color: white;

    padding: 14px;

    margin-top: 25px;

    font-family: var(--font-title);

    font-size: 1.1rem;

}


.price-button:hover {

    background: var(--yellow);

    color: #000;

}


.terms {

    text-align: center;

    color: var(--gray-dark);

    font-size: .8rem;

    margin-top: 25px;

}


/* =========================
   BENEFICIOS
========================= */

.benefits-section {

    padding: 110px 0;

}


.benefits-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.benefit {

    padding: 40px 25px;

    border-right: 1px solid var(--border);

}


.benefit:last-child {

    border-right: none;

}


.benefit-icon {

    font-family: var(--font-title);

    color: var(--yellow);

    font-size: 2rem;

    margin-bottom: 25px;

}


.benefit h3 {

    font-family: var(--font-title);

    font-size: 2rem;

    margin-bottom: 12px;

}


.benefit p {

    color: var(--gray);

    line-height: 1.5;

}


/* =========================
   GALERÍA
========================= */

.gallery-section {

    background: #08080b;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

}


.gallery-image {

    min-height: 500px;

    overflow: hidden;

}


.gallery-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.gallery-copy {

    min-height: 500px;

    padding: 60px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--black-soft);

}


.gallery-copy h2 {

    font-family: var(--font-title);

    font-size: 4.5rem;

    line-height: .85;

}


.gallery-copy h2 span {

    display: block;

    color: var(--red);

}


.gallery-copy p:not(.section-tag) {

    color: var(--gray);

    line-height: 1.6;

    margin: 25px 0;

}


.gallery-copy strong {

    font-family: var(--font-title);

    color: var(--yellow);

    font-size: 2rem;

}


.gallery-line {

    width: 70px;

    height: 5px;

    background: var(--yellow);

    margin-bottom: 15px;

}


/* =========================
   CTA
========================= */

.cta-section {

    min-height: 600px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.90)
        ),

        url("img/hero.jpg");

    background-size: cover;

    background-position: center;

}


.cta-content {

    position: relative;

    z-index: 2;

}


.cta-number {

    font-family: var(--font-title);

    color: var(--red);

    font-size: 11rem;

    line-height: .6;

    margin-bottom: 35px;

}


.cta-content h2 {

    font-family: var(--font-title);

    font-size: clamp(4rem,9vw,8rem);

    line-height: .8;

}


.cta-content h2 span {

    display: block;

    color: var(--yellow);

}


.cta-content > p:not(.section-tag) {

    color: #ccc;

    margin: 25px 0;

}


.cta-phone {

    display: block;

    color: var(--gray);

    margin-top: 15px;

}


/* =========================
   FOOTER
========================= */

.footer {

    background: #050507;

    border-top: 1px solid var(--border);

}


.footer-content {

    padding: 55px 0;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 40px;

}


.footer-brand img {

    width: 120px;

    margin-bottom: 15px;

}


.footer-brand p {

    color: var(--gray);

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-links a:hover {

    color: var(--yellow);

}


.footer-location {

    display: flex;

    flex-direction: column;

    gap: 10px;

    color: var(--gray);

}


.footer-location strong {

    color: white;

    font-family: var(--font-title);

    font-size: 1.8rem;

}


.footer-bottom {

    border-top: 1px solid var(--border);

    text-align: center;

    padding: 20px;

    color: var(--gray-dark);

    font-size: .8rem;

}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 62px;

    height: 62px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    box-shadow: 0 5px 25px rgba(0,0,0,.4);

    transition: .25s;

}


.whatsapp-float span {

    font-size: 28px;

}


.whatsapp-float:hover {

    transform: scale(1.1);

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {


    .nav {

        display: none;

        position: absolute;

        top: 90px;

        left: 0;

        width: 100%;

        background: #09090c;

        flex-direction: column;

        padding: 25px;

    }


    .nav.active {

        display: flex;

    }


    .menu-button {

        display: block;

    }


    .anniversary-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .promo-main {

        grid-template-columns: 1fr;

    }


    .promo-extra {

        min-height: 200px;

    }


    .pricing-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .benefits-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

    }


    .gallery-copy {

        grid-column: span 2;

    }


    .footer-content {

        grid-template-columns: 1fr 1fr;

    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {


    .header-content {

        height: 75px;

    }


    .logo img {

        width: 100px;

    }


    .hero {

        min-height: 760px;

    }


    .hero h1 {

        font-size: 4.3rem;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .anniversary-section,
    .promo-section,
    .prices-section,
    .benefits-section {

        padding: 75px 0;

    }


    .number {

        font-size: 10rem;

    }


    .number-text strong {

        font-size: 2rem;

    }


    .pricing-grid {

        grid-template-columns: 1fr;

    }


    .price-card.featured {

        transform: none;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .benefit {

        border-right: none;

        border-bottom: 1px solid var(--border);

    }


    .gallery-grid {

        grid-template-columns: 1fr;

    }


    .gallery-copy {

        grid-column: auto;

    }


    .gallery-image {

        min-height: 350px;

    }


    .gallery-copy {

        min-height: 400px;

        padding: 45px 30px;

    }


    .gallery-copy h2 {

        font-size: 3.5rem;

    }


    .cta-section {

        min-height: 550px;

    }


    .cta-number {

        font-size: 8rem;

    }


    .cta-content h2 {

        font-size: 4.5rem;

    }


    .btn-large {

        width: 100%;

    }


    .footer-content {

        grid-template-columns: 1fr;

    }


    .whatsapp-float {

        width: 55px;

        height: 55px;

        right: 15px;

        bottom: 15px;

    }

}