:root {
    --brand-primary: #f4b63a;
    --brand-secondary: #0e2f4b;
    --brand-accent: #007f5f;
    --brand-light: #f6f8fb;
    --brand-dark: #1c1f24;
    --text-muted: #6f7c88;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius-card: 22px;
    --shadow-soft: 0 20px 45px rgba(15, 30, 45, 0.12);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--brand-dark);
    background-color: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    border-radius: calc(var(--radius-card) - 6px);
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.9rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--brand-primary);
    color: var(--brand-dark);
    box-shadow: var(--shadow-soft);
}

.button--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 0.85rem 1.75rem;
}

.button--whatsapp {
    background: var(--brand-accent);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.button--full {
    width: 100%;
}

.topbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(12, 28, 45, 0.08);
    z-index: 20;
}

.topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.topbar__brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar__link {
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.topbar__link:hover {
    background: rgba(14, 47, 75, 0.08);
}

.hero {
    background: linear-gradient(135deg, #0b1f3a 0%, #174a8c 60%, #0b1f3a 100%);
    color: #fff;
    padding: 5rem 0 4.5rem;
}

.hero__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero__kicker {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.68);
}

.hero__text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 3.2vw + 1.4rem, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero__text p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero__availability {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.97rem;
}

.hero__image {
    text-align: center;
}

.hero__image img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__image figcaption {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.section {
    padding: 4.75rem 0;
}

.section--light {
    background: var(--brand-light);
}

.section--accent {
    background: linear-gradient(115deg, #0b1f3a 0%, #0e2f4b 55%, #174a8c 100%);
    color: #fff;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 1.6vw + 1.6rem, 2.7rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section__title--light {
    color: #fff;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2.1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(12, 28, 45, 0.08);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.service-card li {
    position: relative;
    padding-left: 1.4rem;
}

.service-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
}

.highlight {
    background: linear-gradient(135deg, #f4b63a 0%, #fdce77 100%);
    color: #1f2a3d;
}

.highlight__content {
    display: grid;
    gap: 1.5rem;
    max-width: 780px;
    text-align: center;
}

.highlight p {
    font-size: 1.15rem;
    color: #2f3848;
}

.experience-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.experience-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2.2rem;
    border: 1px solid rgba(12, 28, 45, 0.08);
    box-shadow: 0 12px 30px rgba(9, 24, 38, 0.08);
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.experience-card ul {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.experience-card li {
    color: var(--text-muted);
}

.experience-card strong {
    color: var(--brand-dark);
}

.testimonials {
    text-align: center;
}

.testimonial {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2.4rem;
    border-left: 6px solid var(--brand-primary);
    box-shadow: var(--shadow-soft);
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 1.2rem;
    font-weight: 600;
    font-style: normal;
    color: var(--brand-secondary);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.75rem;
    align-items: start;
}

.contact__info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.contact__list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.contact__list a {
    color: #ffd88a;
    font-weight: 600;
}

.contact__form {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.85rem;
}

.contact__form h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.contact__form label {
    font-weight: 600;
    color: var(--brand-dark);
}

.field-hint {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact__form input,
.contact__form textarea,
.contact__form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(12, 28, 45, 0.18);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
    border-color: var(--brand-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 60, 110, 0.2);
}

.contact__disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.footer {
    background: #071324;
    color: rgba(255, 255, 255, 0.82);
    padding-top: 3.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.2rem;
    padding-bottom: 2.2rem;
}

.footer__social {
    display: grid;
    gap: 0.65rem;
}

.footer__social a {
    color: #ffd88a;
    font-weight: 600;
}

.footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 1.4rem 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
}

.thanks {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(14, 47, 75, 0.95), rgba(0, 127, 95, 0.92)), url('losette-hero.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.thanks__container {
    max-width: 520px;
    padding: 3rem;
    border-radius: var(--radius-card);
    background: rgba(7, 19, 36, 0.82);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.4rem;
}

.thanks__container h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--brand-primary);
}

.thanks__container p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks__container .button {
    justify-self: center;
    padding-inline: 2.6rem;
}

@media (max-width: 840px) {
    .topbar__nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 4.2rem 0 3.5rem;
    }

    .contact__form {
        padding: 1.6rem;
    }
}
