:root {
    --primary: #0F1515;
    --gold: #D4AF37;
    --accent-gold: #C9A961;
    --cta: #B8860B;
    --light: #FAF9F6;
    --gray: #7A7A7A;
    --light-gray: #E8E6E1;
    --secondary-bg: #F5F3F0;
    --dark-footer: #0A0A0A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    background-color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section-title::before {
    content: '◆';
    display: block;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 1rem;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0F1515 0%, #1A2020 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: 2rem;
}

.logo-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo-intro.expand {
    animation: expandToFullscreen 1s ease forwards;
}

@keyframes expandToFullscreen {
    0% {
        padding: 2rem;
    }
    50% {
        padding: 0;
    }
    100% {
        padding: 0;
        opacity: 0;
    }
}

.intro-video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border: 3px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 1s ease;
}

.logo-intro.expand .intro-video-container {
    width: 100%;
    max-width: none;
    border-radius: 0;
    border-width: 0;
    box-shadow: none;
}

.logo-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-loader {
    display: none;
}

.luxury-text {
    display: none;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mobile-whatsapp {
    display: none;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 1.5rem;
    }

    .mobile-whatsapp {
        display: block;
    }
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--gold);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1A2020 100%);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 21, 21, 0.75) 0%, rgba(26, 32, 32, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-benefits {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-signals {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -2rem;
}

.trust-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 21, 21, 0.92) 0%, rgba(26, 43, 43, 0.88) 100%);
    z-index: 2;
}

.trust-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-grid {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 2rem;
    text-align: center;
}

.trust-item {
    color: white;
}

.trust-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 20px var(--gold); }
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.trust-item p {
    font-size: 13px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

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

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 4rem;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.video-card {
    position: relative;
    flex: 0 0 calc(33.333% - 1rem);
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    scroll-snap-align: start;
    transition: all 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 21, 21, 0.95) 0%, rgba(15, 21, 21, 0.7) 50%, transparent 100%);
    color: white;
}

.video-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.video-card-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #1A2020 100%);
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.card {
    background: linear-gradient(135deg, #FAFBF9 0%, #F5F3F0 100%);
    border: 1px solid var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 21, 21, 0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #1A2020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card a {
    color: var(--cta);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

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

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
}

.section-alt {
    background-color: var(--secondary-bg);
    padding: 4rem 2rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-step {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    transition: all 0.3s;
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.step-number {
    background: linear-gradient(135deg, var(--primary) 0%, #1A2020 100%);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin: 0 auto 1rem;
    border: 2px solid var(--gold);
}

.timeline-step h4 {
    font-size: 16px;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.timeline-step p {
    font-size: 13px;
    color: var(--gray);
}

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

.why-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light-gray);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    background: white;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #FAFAFA;
}

.faq-toggle {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.form-container {
    background: linear-gradient(135deg, #FAFBF9 0%, #F5F3F0 100%);
    border: 1px solid var(--light-gray);
    border-top: 3px solid var(--gold);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 8px 32px rgba(15, 21, 21, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: white;
    color: var(--primary);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.contact-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--cta);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

footer {
    background-color: var(--dark-footer);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 12px;
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-gold);
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 12px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.page-hero {
    position: relative;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 21, 21, 0.85) 0%, rgba(26, 32, 32, 0.75) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

@media (max-width: 768px) {
    .intro-video-container {
        width: 70%;
        max-width: 400px;
        aspect-ratio: 9/16;
        border-width: 2px;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-image {
        height: 300px;
    }

    .cards-grid,
    .why-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .timeline-step {
        flex: 0 0 100%;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .form-container {
        padding: 2rem;
    }

    .logo img {
        height: 80px;
    }

    .intro-video-container {
        width: 95%;
        border-width: 2px;
    }

    .carousel-container {
        padding: 0 3rem;
    }

    .video-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
