:root {
    --navy: #071d3a;
    --navy2: #0b2b52;
    --gold: #f4b41a;
    --text: #0a1d36;
    --white: #fff;
    --muted: #607087;
    --line: #dfe6ef
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #fff
}

a, button, input, select, textarea {
    transition: all .25s ease
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px
}

svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

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

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0
}

.topbar a {
    color: #fff;
    text-decoration: none
}

.contact-strip {
    display: flex;
    gap: 10px;
    align-items: center
}

.languages {
    display: flex;
    gap: 8px;
    align-items: center
}

.lang {
    background: none;
    border: 0;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    opacity: .8
}

.lang.active {
    opacity: 1
}

.navbar {
    background: #fff;
    box-shadow: 0 3px 12px rgba(6, 31, 58, .08)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text)
}

.brand img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover
}

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

.brand-copy strong {
    font-size: 24px;
    letter-spacing: -.03em;
    line-height: 1.05
}

.brand-copy small {
    font-size: 12px;
    color: #42526a;
    margin-top: 2px;
    line-height: 1.3;
    font-weight: 600;
}

.brand:hover .brand-copy strong {
    color: var(--navy)
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    position: relative;
    padding: 6px 0
}

.main-nav a[href="#contacto"] {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 6px 14px rgba(244, 180, 26, .2)
}

.main-nav a.active:after,
.main-nav a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    height: 3px;
    background: var(--gold)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 24px
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 620px;
    background-color: var(--navy);
    background-image:
        linear-gradient(90deg, rgba(7, 29, 58, .95) 0%, rgba(7, 29, 58, .84) 28%, rgba(7, 29, 58, .58) 52%, rgba(7, 29, 58, .16) 76%, rgba(7, 29, 58, 0) 100%),
        url("assets/miami imagen.png");
    background-position: center 18%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    min-height: 620px;
    padding: 40px 0;
}

.hero-copy {
    padding: 72px 0 70px;
    color: #fff;
    max-width: 620px;
    margin-left: -80px;
}

.eyebrow {
    color: #fff4c6;
    font-weight: 700;
    margin: 0 0 12px
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -.03em;
    max-width: 640px
}

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

.lead {
    font-size: 18px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 18px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    padding: 14px 24px;
    margin-top: 12px
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy)
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 2px solid rgba(244, 180, 26, .95);
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 10px 24px rgba(7, 29, 58, .16);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: #e9a812;
    color: var(--navy);
}

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

.location {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 24px;
    margin-bottom: 8px;
    max-width: 560px
}

.hero-photo-wrap {
    display: none;
}

.hero-photo {
    display: none;
}

.experience-card {
    position: absolute;
    right: -200px;
    top: 96px;
    background: var(--navy);
    color: #fff;
    width: 190px;
    padding: 26px 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .25)
}

.experience-icon {
    font-size: 34px;
    color: var(--gold)
}

.experience-card strong {
    display: block;
    color: var(--gold);
    font-size: 21px;
    line-height: 1.16
}

.experience-card span {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 18px auto
}

.experience-card p {
    margin: 0;
    line-height: 1.45
}

.section {
    padding: 64px 0
}

.section.services {
    padding: 84px 0 72px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.services-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
}

.services h2 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 14px;
    font-weight: 600;
    color: var(--navy);
}

.services-intro {
    margin: 0 auto;
    max-width: 700px;
    font-size: 16px;
    line-height: 1.75;
    color: #516173;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(7, 29, 58, .08);
    border-radius: 22px;
    padding: 26px 22px 24px;
    text-align: left;
    background: #fff;
    box-shadow: 0 12px 24px rgba(7, 29, 58, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(7, 29, 58, .12);
    border-color: var(--gold);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 180, 26, .24), rgba(244, 180, 26, .08));
    color: var(--navy);
    font-size: 32px;
    line-height: 1;
}

.card h3 {
    font-size: 18px;
    min-height: 48px;
    margin: 0 0 10px;
    color: var(--navy);
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.7;
    font-size: 14px;
    color: #42526a;
}

.service-list li {
    position: relative;
    padding-left: 14px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.service-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #21415f;
    text-decoration: none;
}

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

.card--featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: #f8fbff;
    border-color: rgba(244, 180, 26, .34);
    box-shadow: 0 16px 32px rgba(7, 29, 58, .16);
}

.card--featured .icon {
    background: rgba(244, 180, 26, .16);
    color: var(--gold);
    border: 1px solid rgba(244, 180, 26, .22);
}

.card--featured h3,
.card--featured .service-list,
.card--featured .service-card-link {
    color: inherit;
}

.card--featured .service-list {
    color: rgba(255, 255, 255, .84);
}

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

.card--featured .service-list li::before {
    color: var(--gold);
}

.trust {
    background: linear-gradient(135deg, #071b33 0%, #0b2b52 100%);
    color: #fff;
    padding: 72px 0;
}

.trust-shell {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: start;
}

.trust-intro {
    padding-top: 8px;
}

.trust-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--gold);
}

.trust h2 {
    color: #fff;
    margin: 0 0 16px;
    text-align: left;
    line-height: 1.15;
    font-size: 36px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.trust-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #cfd9e8;
    margin: 0 0 24px;
    max-width: 640px;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
}

.metric-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: .02em;
}

.metric-card span {
    color: #e8eef8;
    font-size: 13px;
    line-height: 1.45;
}

.trust-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    transition: transform .25s ease, opacity .25s ease;
}

.benefit-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.benefit-item:hover {
    transform: translateX(4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(244, 180, 26, .45);
    color: var(--gold);
    margin-top: 2px;
}

.benefit-icon svg {
    width: 18px;
    height: 18px
}

.benefit-item h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #fff;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd6e4;
}

.founder-section {
    padding: 72px 0 40px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.founder-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.founder-portrait img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(7, 29, 58, .12);
    object-fit: cover;
}

.founder-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--gold);
}

.founder-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    color: var(--navy);
    margin: 0 0 10px;
}

.founder-role {
    font-size: 15px;
    color: #516173;
    margin: 0 0 14px;
}

.founder-bio {
    font-size: 15px;
    line-height: 1.9;
    color: #516173;
    margin: 0 0 18px;
}

.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.founder-highlights li {
    padding: 10px 12px;
    border: 1px solid rgba(7, 29, 58, .08);
    border-radius: 999px;
    background: #fff;
    color: #21415f;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(7, 29, 58, .04);
}

.founder-btn {
    border: 1px solid var(--navy);
    color: var(--navy);
    background: transparent;
    border-radius: 999px;
    padding: 11px 18px;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.founder-btn:hover {
    background: var(--navy);
    color: #fff
}

.reviews {
    background: #f7f9fc
}

.section-heading {
    text-align: center;
    margin-bottom: 30px
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 0;
    color: var(--navy)
}

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

.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 10px 24px rgba(7, 29, 58, .06)
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 29, 58, .08)
}

.review-quote-mark {
    font-size: 42px;
    line-height: 1;
    color: var(--gold);
    font-family: Georgia, serif;
    margin-bottom: 8px
}

.stars {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    margin: 12px 0 14px
}

.review-quote {
    line-height: 1.8;
    color: #405169;
    margin: 0;
    font-size: 15px
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.review-meta strong {
    color: var(--navy);
    font-size: 15px
}

.review-meta span {
    color: #73839a;
    font-size: 13px
}

.contact-section {
    background: linear-gradient(90deg, rgba(7, 29, 58, .97), rgba(12, 43, 81, .96));
    color: #fff;
    padding: 72px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.2fr .8fr;
    gap: 36px;
    align-items: start
}

.contact-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin: 0 0 14px
}

.contact-copy p {
    line-height: 1.8;
    color: #dce7f2;
    margin: 0 0 18px
}

.contact-trust {
    display: grid;
    gap: 10px;
    margin-top: 20px
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e7eef7;
    font-size: 14px
}

.contact-trust-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 180, 26, .16);
    color: var(--gold);
    border-radius: 50%;
    font-size: 14px
}

.contact-form {
    background: rgba(255,255,255,.97);
    border-radius: 18px;
    padding: 24px;
    color: var(--text);
    box-shadow: 0 16px 36px rgba(2, 12, 24, .16)
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d4dce7;
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    min-height: 48px;
    color: var(--text)
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, .16)
}

.submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 14px;
    font-weight: 800;
    cursor: pointer
}

.submit:hover {
    background: #0d3b6e
}

.contact-form small {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #66758a
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 15px
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    padding: 6px 0
}

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

.contact-details p {
    line-height: 1.7;
    margin: 0;
    color: #dce7f2
}

.site-footer {
    background: #04162b;
    color: #d6e0eb;
    padding: 48px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .9fr;
    gap: 28px;
    align-items: start
}

.footer-brand-link {
    margin-bottom: 12px
}

.footer-brand p {
    margin: 10px 0 0;
    line-height: 1.8;
    color: #b7c4d3;
    max-width: 380px
}

.footer-links h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a,
.footer-links span {
    color: #cfd9e8;
    text-decoration: none;
    font-size: 14px
}

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

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #95a8bb;
    font-size: 13px
}

.site-footer a {
    color: inherit
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.footer-legal a {
    color: #95a8bb;
    text-decoration: none
}

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

@media (max-width:1050px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .hero {
        background-position: center 18%;
    }

    .hero-copy {
        max-width: none;
        margin-left: 0
    }

    .hero-photo-wrap {
        padding-top: 0
    }

    .experience-card {
        right: 20px
    }

    .trust-shell,
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .trust-benefits {
        margin-top: 6px
    }

    .main-nav {
        gap: 18px
    }

    .brand-copy strong {
        font-size: 21px
    }

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

@media (max-width:760px) {
    .topbar-inner {
        align-items: flex-start;
        gap: 10px
    }

    .contact-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .sep {
        display: none
    }

    .brand-copy small {
        display: none
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 124px;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        z-index: 20;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
    }

    .main-nav.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .hero h1 {
        font-size: 40px
    }

    .hero-grid {
        min-height: auto
    }

    .hero-copy {
        padding-top: 52px
    }

    .hero-photo {
        height: 380px
    }

    .experience-card {
        position: static;
        width: auto;
        margin: 20px
    }

    .hero-photo-wrap {
        flex-direction: column
    }

    .service-grid,
    .review-grid,
    .trust-metrics,
    .founder-highlights {
        grid-template-columns: 1fr
    }

    .field-row {
        grid-template-columns: 1fr
    }

    .section h2,
    .trust h2,
    .section-heading h2,
    .founder-copy h2 {
        font-size: 32px
    }

    .brand img {
        width: 56px;
        height: 56px
    }

    .brand-copy strong {
        font-size: 18px
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start
    }

    .footer-legal {
        gap: 10px
    }
}