:root {
    --navy: #1a1a1a;
    --gold: #c8a45d;
    --dark: #111111;
    --light: #f7f4ee;
}

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

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 102px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 5%;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 70px;
    width: auto;
}

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

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.brand-location {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 20px;
    padding: 3px;
    background: #f7f7f7;
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.lang-btn.active {
    background: var(--gold);
    color: #111;
}

.menu-toggle {
    display: none;
    border: none;
    background: var(--dark);
    color: white;
    font-size: 1.35rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - 102px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.65)),
        url("images/hero.jpg");
    background-size: cover;
    background-position: center top;
    color: white;
    text-align: center;
    padding: 140px 20px;
}

.hero-content {
    max-width: 900px;
    margin-top: 40px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 18px rgba(0,0,0,0.6);
    animation: softFloat 4s ease-in-out infinite;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    background: var(--gold);
    color: #111;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

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

.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

section {
    padding: 90px 10%;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    font-size: 2.5rem;
}

.section-intro {
    max-width: 750px;
    margin: -20px auto 40px auto;
    text-align: center;
    font-size: 1.05rem;
}

.about {
    background: var(--light);
    text-align: center;
}

.about p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-photo {
    flex: 0 0 300px;
}

.about-photo img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-photo img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin: 0 0 20px 0;
}

.about-photographer {
    margin-top: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.about-photographer h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-photographer p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        flex: 0 0 auto;
        max-width: 260px;
    }

    .about-photographer {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-left: 0;
        padding-top: 15px;
    }
}

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

.service-card,
.process-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-5px);
}

.service-card h3,
.process-card h3 {
    margin-bottom: 15px;
}

.process-section,
.faq-section {
    background: var(--light);
}

.step-number {
    display: inline-block;
    color: var(--gold);
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.packages {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    padding: 35px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    background: white;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.card:hover {
    transform: translateY(-5px);
}

.card h4 {
    color: var(--gold);
    font-size: 2.5rem;
    margin: 20px 0;
}

.featured {
    border: 3px solid var(--gold);
}

.gallery {
    columns: 4 260px;
    column-gap: 18px;
}

.gallery img {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 10px;
    break-inside: avoid;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.035);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    filter: brightness(1.08) contrast(1.05);
}

.portfolio-videos {
    margin-top: 22px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    justify-content: center;
    gap: 18px;
}

.video-wrapper {
    position: relative;
}

.video-grid video {
    width: 100%;
    max-height: 520px;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    cursor: pointer;
}

.video-grid video:hover {
    transform: scale(1.025);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    filter: brightness(1.08) contrast(1.05);
}

.sound-toggle {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 5;

    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 999px;

    padding: 8px 14px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;

    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.sound-toggle::before {
    content: "♩";
    display: inline-block;
    margin-right: 9px;
    font-size: 0.74rem;
    letter-spacing: 0;
    color: #111111;
    transform: rotate(-12deg);
}

.sound-toggle:hover {
    background: rgba(255, 255, 255, 0.72);
}

.sound-toggle.hidden {
    display: none;
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-container details {
    background: white;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.faq-container summary {
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.faq-container p {
    margin-top: 12px;
    color: #444;
}

#contacto {
    text-align: center;
}

#contacto p {
    margin: 12px 0;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.email-btn {
    background: var(--dark);
    color: white;
}

.email-btn:hover {
    background: #2a2a2a;
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 25px;
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 65px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 45px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
}

.lightbox-arrow:hover {
    background: rgba(200,164,93,0.85);
    color: #111;
}

.lightbox-prev {
    left: 35px;
}

.lightbox-next {
    right: 35px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes softFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Testimonials */

.testimonials-section {
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-top: 3px solid var(--gold);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.testimonial-quote::before {
    content: "“";
    display: block;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.65;
    margin-bottom: 12px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.testimonial-author a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.testimonial-author a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    body {
        padding-top: 88px;
    }

    html {
        scroll-padding-top: 95px;
    }

    nav {
        grid-template-columns: auto auto;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        min-height: auto;
        padding: 18px 7% 22px;
        background: rgba(255, 255, 255, 0.90);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--dark);
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.10);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 2.2px;
        text-transform: uppercase;
    }

    .nav-links a::after {
        content: "→";
        color: var(--gold);
        font-size: 1rem;
        letter-spacing: 0;
    }

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

    .nav-actions {
        justify-content: flex-end;
    }

    .menu-toggle {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 14px 5%;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 54px;
        max-width: 120px;
        object-fit: contain;
    }

    .brand-name {
        font-size: 0.9rem;
        max-width: 130px;
        line-height: 1.15;
        letter-spacing: 0.8px;
    }

    .brand-location {
        font-size: 0.65rem;
    }

    .language-toggle {
        transform: scale(0.95);
        transform-origin: right center;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .hero {
        min-height: calc(85vh - 88px);
        padding: 90px 20px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 70px 7%;
    }

    section h2 {
        font-size: 2rem;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }

    .gallery {
        columns: 1;
        column-gap: 0;
    }

    .gallery img {
        width: 100%;
        height: auto;
        margin-bottom: 18px;
        object-fit: cover;
        border-radius: 10px;
    }

    .portfolio-videos {
        margin-top: 10px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .video-grid video {
        width: 100%;
        max-height: none;
        border-radius: 10px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        line-height: 58px;
        font-size: 26px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 82vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 38px;
    }

    .lightbox-arrow {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

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

    .testimonial-card {
        padding: 28px 24px;
    }
}

@media (max-width: 430px) {
    .brand-name {
        max-width: 115px;
        font-size: 0.82rem;
    }

    .logo img {
        max-width: 108px;
    }

    .nav-links {
        padding: 14px 7% 18px;
    }

    .nav-links a {
        font-size: 0.76rem;
        letter-spacing: 1.7px;
        padding: 10px 0;
    }

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

    .sound-toggle {
        bottom: 10px;
        left: 10px;
        padding: 7px 12px;
        font-size: 0.62rem;
        letter-spacing: 3px;
    }

    .sound-toggle::before {
        font-size: 0.68rem;
        margin-right: 8px;
    }
}