/* =====================================================
   PRO CEVA — Landing Styles
   Palette: Black / Gold / Red (accent)
   ===================================================== */

:root {
    --black: #0a0a0a;
    --black-2: #141414;
    --black-3: #1c1c1c;
    --dark: #222;
    --gold: #c9a04a;
    --gold-2: #b88a33;
    --gold-soft: #e4c77a;
    --red: #a01818;
    --red-2: #c22020;
    --white: #ffffff;
    --cream: #f6f1e8;
    --gray: #8a8a8a;
    --gray-2: #c9c9c9;
    --gray-3: #3a3a3a;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --container: 1200px;
    --radius: 4px;
    --radius-lg: 10px;

    --shadow-md: 0 10px 30px rgba(0,0,0,.25);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.4);

    --t: .35s cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: #222;
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
iframe { display: block; }

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 .5em;
    letter-spacing: .5px;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1em; }
.lead { font-size: 1.1rem; color: #444; max-width: 65ch; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 .75em;
}
.text-gold { color: var(--gold); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(201, 160, 74, .35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 160, 74, .55);
}
.btn-outline {
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--black);
    border-color: #fff;
}

/* =========== HEADER =========== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: background var(--t), border-color var(--t), padding var(--t);
}
.site-header.scrolled {
    background: rgba(10, 10, 10, .96);
    border-bottom-color: rgba(201, 160, 74, .2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}
.logo { height: 52px; width: auto; transition: height var(--t); }
.site-header.scrolled .logo { height: 44px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav ul {
    display: flex;
    gap: 28px;
}
.main-nav a {
    color: #eee;
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 6px 0;
    position: relative;
    transition: color var(--t);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 100%;
    height: 2px;
    background: var(--gold);
    transition: right var(--t);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { right: 0; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: transform var(--t), opacity var(--t);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== HERO =========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat,
        #1a1a1a;
    transform: scale(1.05);
    animation: kenburns 20s ease-out infinite alternate;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,.85) 100%),
        radial-gradient(ellipse at 30% 40%, rgba(160,24,24,.25), transparent 60%);
    z-index: 1;
}
@keyframes kenburns {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .5em;
    font-size: .82rem;
    color: var(--gold);
    margin-bottom: 1.4em;
    font-weight: 600;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(201,160,74,.4);
    display: inline-block;
    padding-right: 2em;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: .4em;
}
.hero-sub {
    font-size: 1.15rem;
    max-width: 620px;
    color: rgba(255,255,255,.85);
    margin-bottom: 2em;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 3em;
}
.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 2em;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stats strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
}
.hero-stats span {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .15em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* =========== SECTIONS =========== */
.section {
    padding: 110px 0;
    position: relative;
}
.section-dark {
    background: var(--black);
    color: #e8e8e8;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.75); }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}
.section-head .lead { margin-left: auto; margin-right: auto; }

/* Grid 2 cols */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Check list */
.check-list {
    margin: 1.5em 0 0;
}
.check-list li {
    padding: 10px 0 10px 36px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.section:not(.section-dark) .check-list li {
    border-bottom-color: rgba(0,0,0,.08);
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-list li::after {
    content: '';
    position: absolute;
    left: 6px; top: 50%;
    width: 10px; height: 5px;
    border-left: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: translateY(-70%) rotate(-45deg);
}

/* Pill list */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5em 0 2em;
}
.pill-list li {
    padding: 8px 18px;
    border: 1px solid rgba(201,160,74,.5);
    border-radius: 50px;
    font-size: .88rem;
    color: var(--gold-2);
    background: rgba(201,160,74,.06);
}

/* Media card */
.media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}
.media-card-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.media-card:hover .media-card-img { transform: scale(1.08); }
.media-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.8));
}
.media-card-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 2;
    color: #fff;
}
.media-card-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
}
.media-card-badge span {
    font-size: .85rem;
    opacity: .8;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* =========== CATEGORIES =========== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.cat-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
    border: 1px solid rgba(201,160,74,.15);
    background: #111;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,160,74,.5);
}
.cat-card-bg {
    position: absolute; inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.1); }
.cat-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.85) 100%);
    transition: background var(--t);
}
.cat-card:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(10,10,10,.95) 100%);
}
.cat-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 26px;
    z-index: 2;
    color: #fff;
    transform: translateY(40px);
    transition: transform var(--t);
}
.cat-card:hover .cat-card-content { transform: translateY(0); }
.cat-card h3 {
    color: var(--gold);
    margin-bottom: .3em;
    font-size: 1.8rem;
}
.cat-card p {
    font-size: .9rem;
    opacity: 0;
    margin: 0;
    transform: translateY(10px);
    transition: opacity var(--t), transform var(--t);
    color: rgba(255,255,255,.85);
}
.cat-card:hover p {
    opacity: 1;
    transform: translateY(0);
}
.cat-card h3::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--red-2);
    margin-bottom: 14px;
}

/* CTA bar */
.cta-bar {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
    border: 1px solid rgba(201,160,74,.3);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
}
.cta-bar p {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 500;
}

/* =========== FEATURES =========== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature {
    padding: 40px 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    transition: transform var(--t), border-color var(--t), background var(--t);
}
.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(201,160,74,.4);
    background: rgba(201,160,74,.04);
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { color: #fff; }
.feature p { color: rgba(255,255,255,.7); margin: 0; font-size: .95rem; }

/* =========== MAP =========== */
.map-wrap {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: var(--shadow-md);
    background: #1a1a1a;
}
.map-wrap iframe { width: 100%; height: 100%; }

/* =========== CONTACT =========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.contact-card {
    padding: 36px 26px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--t), border-color var(--t), background var(--t);
    color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,160,74,.5);
    background: rgba(201,160,74,.06);
}
.contact-card--primary {
    background: linear-gradient(135deg, rgba(37,211,102,.12) 0%, rgba(37,211,102,.03) 100%);
    border-color: rgba(37,211,102,.35);
}
.contact-card--primary:hover {
    border-color: rgba(37,211,102,.6);
    background: linear-gradient(135deg, rgba(37,211,102,.18) 0%, rgba(37,211,102,.05) 100%);
}
.contact-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.contact-card--primary .contact-icon {
    background: #25D366;
    color: #fff;
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h3 { color: #fff; margin-bottom: .2em; }
.contact-card p { font-size: .85rem; opacity: .7; margin-bottom: .6em; }
.contact-card strong {
    display: block;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1em;
    word-break: break-word;
}
.contact-card--primary strong { color: #25D366; }
.contact-cta {
    margin-top: auto;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    transition: color var(--t);
}
.contact-card:hover .contact-cta { color: var(--gold); }
.contact-card--primary:hover .contact-cta { color: #25D366; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.info-block h4 {
    color: var(--gold);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: .78rem;
    letter-spacing: .2em;
    margin-bottom: 1em;
}
.info-block p { color: rgba(255,255,255,.85); margin: 0; line-height: 1.7; }

/* =========== WHATSAPP FLOAT =========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    animation: pulseWA 2.5s infinite;
    transition: transform var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: var(--black);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: .85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity var(--t), transform var(--t);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes pulseWA {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.6); }
    50% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* =========== FOOTER =========== */
.site-footer {
    background: #050505;
    color: rgba(255,255,255,.7);
    padding: 80px 0 30px;
    border-top: 2px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo { height: 70px; margin-bottom: 18px; }
.footer-tag {
    color: var(--gold);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1em;
}
.footer-desc { font-size: .9rem; max-width: 320px; line-height: 1.7; }
.site-footer h5 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1.4em;
    font-weight: 600;
}
.site-footer ul li {
    padding: 5px 0;
    font-size: .92rem;
}
.site-footer a {
    transition: color var(--t);
}
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { margin: 0; }

/* =========== REVEAL ANIMATIONS =========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
    .section { padding: 80px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .main-nav {
        position: fixed;
        top: 0; right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px 40px;
        transform: translateX(100%);
        transition: transform .4s ease;
        border-left: 1px solid rgba(201,160,74,.2);
        gap: 30px;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .main-nav a { font-size: 1.1rem; }
    .nav-cta { width: 100%; justify-content: center; }
    .menu-toggle { display: flex; }

    .hero-stats { gap: 28px; }
    .hero-stats strong { font-size: 1.5rem; }

    .cta-bar { flex-direction: column; text-align: center; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    .cat-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding: 100px 0 60px; min-height: 90vh; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .section-head { margin-bottom: 50px; }
    .logo { height: 44px; }
    .whatsapp-float {
        width: 54px; height: 54px;
        bottom: 18px; right: 18px;
    }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .whatsapp-tooltip { display: none; }
    .cta-bar { padding: 28px 24px; }
    .hero-eyebrow { letter-spacing: .3em; padding-right: 0; }
}

/* Print / accessibility helpers */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
