/* ===== VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-bright: #FFD700;
    --gold-dark: #B8860B;
    --gold-soft: #E8C547;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --charcoal: #2C2C2C;
    --gray-warm: #4A4A4A;
    --gray-medium: #888;
    --gray-light: #DDD;
    --cream: #FFF9E6;
    --cream-soft: #FFFAF0;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #2C2C2C 100%);
    --gradient-luxury: linear-gradient(135deg, #1A1A1A 0%, #D4AF37 100%);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    --transition-slow: all 0.7s cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* ===== PRELOADER LUJOSO ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    animation: pulseGold 4s ease-in-out infinite;
}

.preloader::before {
    top: -200px;
    left: -200px;
}

.preloader::after {
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

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

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.preloader-logo {
    position: relative;
    margin-bottom: 40px;
}

.preloader-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 12px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    animation: shimmerGold 2s ease-in-out infinite;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmerGold {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.preloader-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 8px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInLetter 1.5s ease 0.5s forwards;
}

@keyframes fadeInLetter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.preloader-line {
    width: 300px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    animation: slideLine 2s linear infinite;
}

@keyframes slideLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.preloader-percent {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 300;
}

.preloader-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-bright);
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 35%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 25%; animation-delay: 1s; }
.sparkle-4 { bottom: 20%; right: 15%; animation-delay: 1.5s; }
.sparkle-5 { top: 50%; left: 50%; animation-delay: 2s; }

@keyframes sparkle {
    0%, 100% { transform: scale(0); opacity: 0; }
    50% { transform: scale(2); opacity: 1; }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--cream-soft);
    overflow-x: hidden;
    animation: bodyFadeIn 0.8s ease;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--gold);
}

.top-social {
    display: flex;
    gap: 14px;
}

.top-social a {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(360deg);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-dark);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    gap: 28px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--charcoal);
    letter-spacing: 6px;
    margin-top: 4px;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--gold);
    padding: 14px 26px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-call:hover::before {
    left: 0;
}

.btn-call > * {
    position: relative;
    z-index: 1;
}

.btn-call:hover {
    color: var(--black);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-full { width: 100%; }

/* ===== HERO LUXURY ===== */
.hero {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-title em {
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: var(--gold);
}

.hero-buttons .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 36px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-feature-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hero-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}

.hero-feature-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-visual-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 480px;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.hero-visual-image {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 380px;
    height: 480px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 200px;
    overflow: hidden;
}

.hero-visual-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shineDiagonal 4s ease-in-out infinite;
}

@keyframes shineDiagonal {
    0% { transform: translate(-100%, -100%) rotate(0deg); }
    100% { transform: translate(100%, 100%) rotate(0deg); }
}

.hero-badge-circle {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--black);
    z-index: 2;
    animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge-circle-content {
    animation: rotateCounter 20s linear infinite;
    text-align: center;
}

@keyframes rotateCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.hero-badge-circle strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold-dark);
    display: block;
}

.hero-badge-circle span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== PROMO BAR ===== */
.promo-bar {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideShine 3s ease-in-out infinite;
}

@keyframes slideShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promo-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.promo-bar-item i {
    font-size: 1.3rem;
}

.promo-bar-divider {
    width: 1px;
    height: 24px;
    background: var(--black);
    opacity: 0.3;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-warm);
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 36px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.5s ease;
}

.service-card:hover > * {
    color: var(--white);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold-dark);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--black);
    transform: rotate(360deg) scale(1.1);
    border-color: var(--gold);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--gray-warm);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-link {
    color: var(--gold-dark);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .service-link {
    color: var(--gold);
}

/* ===== PROMOTIONS ===== */
.promotions {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.promotions .section-title {
    color: var(--white);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.promo-card:hover::before {
    transform: scale(1);
}

.promo-card > * {
    position: relative;
    z-index: 1;
}

.promo-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.promo-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 28px;
}

.promo-price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.promo-price-currency {
    font-size: 1.5rem;
    color: var(--gold);
}

.promo-price-old {
    color: var(--gray-medium);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 12px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold);
    transition: var(--transition);
}

.promo-cta:hover {
    gap: 14px;
    color: var(--white);
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-frame {
    background: var(--gradient-gold);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 220px;
    position: relative;
    overflow: hidden;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.about-img-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-img-stat {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--black);
    color: var(--gold);
    padding: 30px 36px;
    text-align: center;
}

.about-img-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    display: block;
    line-height: 1;
}

.about-img-stat span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text .section-tag {
    justify-content: flex-start;
}

.about-text .section-tag::before { display: none; }

.about-text p {
    color: var(--gray-warm);
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 36px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-text strong {
    color: var(--black);
    display: block;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 0.85rem;
    color: var(--gray-warm);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--cream);
    padding: 110px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 0.98rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.testimonial-author strong {
    display: block;
    color: var(--black);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-medium);
    letter-spacing: 1px;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRadial 5s ease-in-out infinite;
}

@keyframes pulseRadial {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content .section-tag {
    color: var(--gold);
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-content h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--cream);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid var(--gold);
}

.info-card:hover {
    background: var(--black);
    color: var(--white);
}

.info-card:hover h4,
.info-card:hover a,
.info-card:hover p {
    color: var(--gold);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    margin-bottom: 6px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-card p,
.info-card a {
    color: var(--gray-warm);
    font-size: 0.95rem;
    transition: var(--transition);
}

/* Form */
.contact-form {
    background: var(--cream);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-bottom: 2px solid var(--gray-light);
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--black);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.map-container {
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.page-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-banner h1 em {
    font-style: italic;
    color: var(--gold);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gold);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--gray-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col .logo-main {
    font-size: 2rem;
    margin-bottom: 8px;
}

.footer-col .logo-sub {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px) rotate(360deg);
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    margin: 0 12px;
}

/* ===== FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover { transform: scale(1.1); }

.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-deep);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 580px;
    margin: 0 auto;
    background: var(--black);
    border: 1px solid var(--gold);
    padding: 24px;
    box-shadow: var(--shadow-deep);
    z-index: 9998;
    display: none;
    color: var(--white);
}

.cookie-banner.show {
    display: block;
    animation: slideUpCookie 0.5s ease;
}

.cookie-banner.hide {
    animation: slideDownCookie 0.4s ease forwards;
}

@keyframes slideUpCookie {
    from { transform: translateY(150%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDownCookie {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(150%); opacity: 0; }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 220px;
}

.cookie-text h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 14px;
}

.btn-cookie {
    padding: 10px 22px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-cookie-primary {
    background: var(--gradient-gold);
    color: var(--black);
}

.btn-cookie-primary:hover {
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.cookie-link {
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: auto;
    text-decoration: underline;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    background: var(--white);
    padding: 100px 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cream);
    padding: 60px;
    border-left: 4px solid var(--gold);
}

.legal-wrapper h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    font-size: 1.8rem;
    margin: 36px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold);
}

.legal-wrapper h2:first-child { margin-top: 0; }

.legal-wrapper h3 {
    color: var(--gold-dark);
    font-size: 1.15rem;
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-wrapper p,
.legal-wrapper li {
    color: var(--gray-warm);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.legal-wrapper ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-wrapper ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.legal-wrapper .last-update {
    background: var(--black);
    padding: 12px 22px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 32px;
    display: inline-block;
}

.legal-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.legal-wrapper table th,
.legal-wrapper table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--gray-light);
}

.legal-wrapper table th {
    background: var(--black);
    color: var(--gold);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
}

[data-aos="fade-up"] { transform: translateY(60px); }
[data-aos="fade-down"] { transform: translateY(-60px); }
[data-aos="fade-left"] { transform: translateX(-60px); }
[data-aos="fade-right"] { transform: translateX(60px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-out"] { transform: scale(1.15); }
[data-aos="flip-up"] { transform: perspective(1200px) rotateX(60deg); transform-origin: bottom; }
[data-aos="reveal-mask"] { clip-path: inset(0 100% 0 0); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
    clip-path: inset(0 0 0 0);
}

/* Letter typing effect */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

@keyframes glowGold {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 40px rgba(212, 175, 55, 1), 0 0 60px rgba(212, 175, 55, 0.5); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes spin360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual { height: 500px; }
    .hero-visual-frame, .hero-visual-image { width: 320px; height: 400px; }
    .hero-visual-image { font-size: 160px; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-info { gap: 16px; font-size: 0.75rem; }
    .top-info span:nth-child(2) { display: none; }

    .nav {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 24px;
        box-shadow: var(--shadow-deep);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav.active { transform: translateX(0); }

    .btn-call { padding: 12px 16px; }
    .btn-call span:not(:first-child) { display: none; }

    .menu-toggle { display: flex; }

    section { padding: 70px 0; }

    .hero { padding: 60px 0; min-height: auto; }
    .hero-features { grid-template-columns: 1fr; gap: 20px; }

    .preloader-logo-text { font-size: 4rem; letter-spacing: 8px; }
    .preloader-line { width: 220px; }

    .about-features { grid-template-columns: 1fr; }
    .about-img-frame { height: 400px; font-size: 130px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 30px; }

    .footer-content { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }

    .legal-wrapper { padding: 30px; }

    .promo-bar-content { gap: 14px; font-size: 0.85rem; }
    .promo-bar-divider { display: none; }

    .whatsapp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 90px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }

    .hero-visual-frame, .hero-visual-image { width: 260px; height: 320px; }
    .hero-visual-image { font-size: 110px; }

    .preloader-logo-text { font-size: 3rem; letter-spacing: 6px; }
}
