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

:root {
    --gold: #c69214;
    --gold-dark: #9d7410;
    --dark: #171717;
    --dark-soft: #242424;
    --cream: #f8f6f1;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e7e3da;
    --border: #ddd8cc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    padding: 18px 0;
    transition: 0.3s ease;
    color: var(--white);
}

.site-header.scrolled {
    background: rgba(23, 23, 23, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.logo-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 8px 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.25s ease;
}

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

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 24px;
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(15, 15, 15, 0.88),
            rgba(15, 15, 15, 0.60),
            rgba(15, 15, 15, 0.35)
        ),
        linear-gradient(
            135deg,
            #303030,
            #151515
        );
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(198, 146, 20, 0.16),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 760px;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 7vw, 78px);
    line-height: 0.98;
    font-weight: 600;
    max-width: 760px;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    max-width: 650px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================
   BOTONES
   ========================= */

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

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


/* =========================
   ESTADÍSTICAS
   ========================= */

.stats {
    background: var(--dark);
    color: var(--white);
    padding: 38px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 7px;
}

.stat-item span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================
   SECCIONES GENERALES
   ========================= */

.section {
    padding: 100px 0;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading.center {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--gray);
    font-size: 15px;
}


/* =========================
   NOSOTROS
   ========================= */

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-box {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #242424,
            #454545
        );
    color: var(--gold);
    font-size: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link i {
    transition: 0.25s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================
   SERVICIOS
   ========================= */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    padding: 34px 30px;
    min-height: 300px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold-dark);
    font-size: 22px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 22px;
}

.service-more {
    border: 0;
    background: transparent;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-more i {
    transition: 0.25s ease;
}

.service-more:hover i {
    transform: translateX(5px);
}
/* =========================
   PROCESO
   ========================= */

.process-section {
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-item {
    position: relative;
    padding: 10px 10px 10px 0;
}

.process-number {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
    font-size: 48px;
    line-height: 1;
    margin-bottom: 18px;
}

.process-item h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    margin-bottom: 10px;
}

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


/* =========================
   TESTIMONIOS
   ========================= */

.testimonials-section {
    background: var(--dark);
    color: var(--white);
}

.testimonials-section .section-heading h2 {
    color: var(--white);
}

.testimonials-section .section-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 20px;
}

.testimonial-card > p {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

.testimonial-author strong {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================
   FAQ
   ========================= */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 5px;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.faq-question i {
    color: var(--gold-dark);
    font-size: 13px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: var(--gray);
    font-size: 13px;
    padding: 0 35px 22px 5px;
}


/* =========================
   CONTACTO
   ========================= */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-brand {
    margin-bottom: 35px;
}

.contact-brand span {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 5px;
}

.contact-brand strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    line-height: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--white);
    color: var(--gold-dark);
}

.contact-item span {
    display: block;
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

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

.contact-whatsapp {
    margin-top: 5px;
    margin-bottom: 30px;
}


/* =========================
   MAPA
   ========================= */

.map-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid var(--border);
    background: var(--white);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================
   FORMULARIO
   ========================= */

.consultation-form-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 10px;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    padding: 13px 14px;
    outline: none;
    border-radius: 0;
    transition: 0.2s ease;
}

.form-group input,
.form-group select {
    height: 47px;
}

.form-group textarea {
    min-height: 135px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(198, 146, 20, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group small {
    display: block;
    min-height: 16px;
    color: #b33;
    font-size: 10px;
    margin-top: 4px;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-bottom: 7px;
}

.label-row label {
    margin-right: auto;
    margin-bottom: 0;
}

#charCount,
.label-row > span:last-child {
    color: #999;
    font-size: 10px;
}

.form-submit {
    width: 100%;
    border: 0;
    margin-top: 4px;
}

.form-status {
    min-height: 22px;
    margin-top: 13px;
    font-size: 12px;
    font-weight: 600;
}

.form-notice {
    color: #999;
    font-size: 10px;
    line-height: 1.5;
    margin-top: 10px;
}


/* =========================
   MODALES
   ========================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    padding: 42px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 17px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--gray);
    font-size: 20px;
}

.modal-close:hover {
    color: var(--gold-dark);
}

.modal-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold-dark);
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 17px;
}

.modal-content p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.modal-list {
    list-style: none;
    margin: 22px 0 28px;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray);
    font-size: 12px;
    padding: 7px 0;
}

.modal-list i {
    color: var(--gold-dark);
    margin-top: 4px;
}

.modal-whatsapp {
    width: 100%;
}


/* =========================
   WHATSAPP FLOTANTE
   ========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1900;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 29px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
}

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


/* =========================
   FOOTER
   ========================= */

.site-footer {
    background: #111;
    color: var(--white);
}

.footer-inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    letter-spacing: 1px;
}

.footer-brand span {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 3px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

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

.footer-contact i {
    width: 18px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 17px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    text-align: center;
}
/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .about-grid {
        gap: 45px;
    }

    .contact-grid {
        gap: 35px;
    }

    .services-grid {
        gap: 16px;
    }

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

}


/* =========================
   TABLET
   ========================= */

@media (max-width: 800px) {

    .site-header {
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 6%;
        background: rgba(23, 23, 23, 0.98);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    }

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

    .nav-menu a {
        padding: 15px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu a:last-child {
        border-bottom: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 25px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        min-height: 350px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

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

    .contact-info {
        max-width: 700px;
    }

    .consultation-form-wrapper {
        max-width: 700px;
    }

}


/* =========================
   CELULAR
   ========================= */

@media (max-width: 560px) {

    .container {
        width: min(92%, 100%);
    }

    .section {
        padding: 70px 0;
    }

    .logo-main {
        font-size: 21px;
    }

    .logo-sub {
        font-size: 7px;
        letter-spacing: 3px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 65px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats {
        padding: 25px 0;
    }

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

    .stat-item {
        padding-left: 8px;
        padding-right: 8px;
    }

    .stat-item strong {
        font-size: 34px;
    }

    .stat-item span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 40px;
    }

    .about-image-box {
        min-height: 280px;
        font-size: 75px;
    }

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

    .service-card {
        min-height: auto;
        padding: 28px 24px;
    }

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

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

    .testimonial-card > p {
        font-size: 21px;
    }

    .faq-question {
        padding: 19px 0;
        font-size: 13px;
    }

    .faq-answer p {
        padding-left: 0;
        padding-right: 20px;
    }

    .contact-brand strong {
        font-size: 30px;
    }

    .consultation-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h3 {
        font-size: 34px;
    }

    .modal {
        padding: 12px;
    }

    .modal-content {
        max-height: 92vh;
        padding: 32px 22px 25px;
    }

    .modal-content h2 {
        font-size: 36px;
        padding-right: 25px;
    }

    .modal-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .modal-list {
        margin-top: 18px;
    }

    .modal-whatsapp {
        min-height: 48px;
    }

    .map-wrapper {
        height: 240px;
    }

    .footer-inner {
        padding: 30px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        width: 100%;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 53px;
        height: 53px;
        font-size: 27px;
    }

}