@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --granate: #570c1f;
    --granate-claro: #82142d;
    --granate-oscuro: #1a050a;
    --granate-medio: #3d0818;
    --beige: #ad9687;
    --beige-claro: #e8ddd6;
    --beige-muy-claro: #f5f0ed;
    --oro: #c4a882;
    --blanco: #ffffff;
    --negro: #0f0f0f;
    --gris: #5a5a5a;
    --gris-claro: #e5e5e5;
    --glass: rgba(87, 12, 31, 0.75);
    --glass-light: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--negro);
    background-color: var(--blanco);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--granate);
}

a {
    color: var(--granate-claro);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--granate);
}

::selection {
    background: var(--granate);
    color: var(--blanco);
}

::-moz-selection {
    background: var(--granate);
    color: var(--blanco);
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav.scrolled {
    background: rgba(26, 5, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.site-nav.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--beige);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--blanco);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--granate-claro);
    color: var(--blanco);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: none;
    transition: all 0.35s ease;
}

.nav-cta:hover {
    background: var(--beige);
    color: var(--granate-oscuro);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    background: var(--granate-oscuro);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--granate-oscuro) 0%, var(--granate) 40%, var(--granate-medio) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(173, 150, 135, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(130, 20, 45, 0.3) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero-label span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige);
}

.hero-label .dot {
    width: 8px;
    height: 8px;
    background: var(--beige);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-v2 h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    color: var(--blanco);
    letter-spacing: -3px;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.hero-v2 h1 em {
    font-style: italic;
    color: var(--beige);
    font-weight: 400;
}

.hero-desc {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--blanco);
    color: var(--granate-oscuro);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-primary-v2:hover {
    background: var(--beige);
    color: var(--granate-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--blanco);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-outline-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--beige);
    color: var(--beige);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-scroll i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.section-asymmetric {
    padding: 7rem 0;
    position: relative;
}

.section-asymmetric.dark {
    background: var(--granate-oscuro);
}

.section-asymmetric.dark h2,
.section-asymmetric.dark h3 {
    color: var(--blanco);
}

.section-asymmetric.dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--granate-claro);
    margin-bottom: 1.5rem;
}

.section-asymmetric.dark .section-tag-v2 {
    color: var(--beige);
}

.section-tag-v2::before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

.asymmetric-row {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
    min-height: 600px;
}

.asymmetric-row.reverse {
    grid-template-columns: 45% 55%;
}

.asymmetric-image-wrap {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.asymmetric-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.asymmetric-row:hover .asymmetric-image-wrap img {
    transform: scale(1.04);
}

.asymmetric-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(87, 12, 31, 0.1));
    pointer-events: none;
}

.asymmetric-content {
    padding: 3rem 4rem;
    position: relative;
}

.asymmetric-row.reverse .asymmetric-content {
    order: -1;
}

.asymmetric-number {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--gris-claro);
    line-height: 1;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.section-asymmetric.dark .asymmetric-number {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.asymmetric-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.asymmetric-content .lead-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gris);
    margin-bottom: 1.5rem;
}

.section-asymmetric.dark .asymmetric-content .lead-text {
    color: rgba(255, 255, 255, 0.8);
}

.asymmetric-content .body-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--gris);
}

.section-asymmetric.dark .asymmetric-content .body-text {
    color: rgba(255, 255, 255, 0.7);
}

.content-list-v2 {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.content-list-v2 li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gris-claro);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--negro);
    transition: all 0.3s ease;
}

.section-asymmetric.dark .content-list-v2 li {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

.content-list-v2 li:hover {
    padding-left: 0.5rem;
    color: var(--granate-claro);
}

.content-list-v2 li i {
    color: var(--granate-claro);
    font-size: 1.1rem;
}

.section-asymmetric.dark .content-list-v2 li i {
    color: var(--beige);
}

.quote-bar {
    background: var(--granate);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(173, 150, 135, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quote-bar p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    color: var(--blanco);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.quote-bar .quote-line {
    width: 60px;
    height: 2px;
    background: var(--beige);
    margin: 1.5rem auto 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: var(--beige-muy-claro);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.bento-item:hover {
    background: var(--blanco);
    border-color: var(--gris-claro);
    box-shadow: 0 20px 40px rgba(87, 12, 31, 0.08);
    transform: translateY(-4px);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item .bento-icon {
    width: 48px;
    height: 48px;
    background: var(--granate);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.bento-item .bento-icon i {
    color: var(--blanco);
    font-size: 1.3rem;
}

.bento-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--granate);
}

.bento-item p {
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.6;
    margin: 0;
}

.cta-section-v2 {
    background: var(--granate-oscuro);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(87, 12, 31, 0.5) 0%, transparent 70%);
}

.cta-section-v2 .container {
    position: relative;
    z-index: 1;
}

.cta-section-v2 h3 {
    color: var(--blanco);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section-v2 > .container > p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.cta-buttons-v2 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-fb-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1877f2;
    color: var(--blanco);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 2px solid #1877f2;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

.btn-fb-v2:hover {
    background: transparent;
    color: #1877f2;
}

.btn-mail-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--beige);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 2px solid var(--beige);
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

.btn-mail-v2:hover {
    background: var(--beige);
    color: var(--granate-oscuro);
}

.site-footer-v2 {
    background: var(--negro);
    padding: 3rem 0;
    text-align: center;
}

.site-footer-v2 img {
    height: 45px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.site-footer-v2 p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: var(--beige);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--granate-oscuro);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .asymmetric-row,
    .asymmetric-row.reverse {
        grid-template-columns: 1fr;
    }

    .asymmetric-image-wrap {
        min-height: 300px;
        order: -1;
    }

    .asymmetric-content {
        padding: 2.5rem 1.5rem;
    }

    .asymmetric-number {
        font-size: 6rem;
        top: -1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .section-asymmetric {
        padding: 4rem 0;
    }

    .hero-v2 .container {
        padding-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-v2 h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .btn-primary-v2,
    .btn-outline-v2 {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons-v2 {
        flex-direction: column;
        align-items: center;
    }

    .btn-fb-v2,
    .btn-mail-v2 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
