:root {
    --site-bg: #f4fbfb;
    --site-surface: #ffffff;
    --site-primary: #117c82;
    --site-primary-dark: #0f6368;
    --site-secondary: #dff4f2;
    --site-accent: #38b36b;
    --site-text: #21343d;
    --site-muted: #58727b;
    --site-border: #d7e8e8;
    --site-shadow: 0 16px 40px rgba(17, 124, 130, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(56, 179, 107, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fefe 0%, var(--site-bg) 100%);
}

a {
    color: var(--site-primary);
    text-decoration: none;
}

a:hover {
    color: var(--site-primary-dark);
}

.site-nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(17, 124, 130, 0.08);
}

.site-nav .navbar-brand img {
    width: auto;
    max-height: 58px;
}

.site-nav .navbar-toggler {
    border-color: rgba(17, 124, 130, 0.25);
}

.site-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(17, 124, 130, 0.15);
}

.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,124,130,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav .nav-link {
    color: var(--site-text);
    font-weight: 600;
    padding: 1rem 1rem;
}

.site-nav .nav-item-cta {
    margin-left: 0.75rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
    color: var(--site-primary);
}

.hero-slider {
    position: relative;
}

.hero-image {
    min-height: 460px;
    max-height: 720px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 52, 55, 0.78) 0%, rgba(14, 52, 55, 0.36) 52%, rgba(14, 52, 55, 0.08) 100%);
}

.carousel-caption {
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    text-align: left;
}

.carousel-caption .container {
    max-width: 720px;
    margin-left: 0;
    padding-bottom: 3rem;
}

.hero-kicker,
.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(223, 244, 242, 0.2);
    color: #efffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.carousel-caption h1,
.carousel-caption h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.08;
    color: #fff;
}

.carousel-caption p {
    max-width: 620px;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
}

.btn-primary-site {
    background: var(--site-primary);
    color: #fff;
    border: 1px solid var(--site-primary);
}

.btn-nav-cta {
    background: var(--site-primary);
    color: #fff;
    border: 1px solid var(--site-primary);
}

.btn-primary-site:hover,
.btn-primary-site:focus {
    background: var(--site-primary-dark);
    border-color: var(--site-primary-dark);
    color: #fff;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus {
    background: var(--site-primary-dark);
    border-color: var(--site-primary-dark);
    color: #fff;
}

.btn-outline-site {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-site:hover,
.btn-outline-site:focus {
    background: #fff;
    color: var(--site-primary-dark);
    border-color: #fff;
}

.btn-outline-dark-site {
    background: transparent;
    color: var(--site-primary-dark);
    border: 1px solid rgba(17, 124, 130, 0.28);
}

.btn-outline-dark-site:hover,
.btn-outline-dark-site:focus {
    background: var(--site-primary-dark);
    color: #fff;
    border-color: var(--site-primary-dark);
}

.intro-strip {
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

.mini-card,
.service-card,
.audience-card,
.highlight-panel,
.accordion-item {
    height: 100%;
    border: 1px solid var(--site-border);
    border-radius: 22px;
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.contact-card,
.contact-form {
    border: 1px solid var(--site-border);
    border-radius: 22px;
    background: var(--site-surface);
    box-shadow: var(--site-shadow);
}

.mini-card {
    padding: 1.4rem;
}

.mini-card strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--site-primary-dark);
    font-size: 1.05rem;
}

.mini-card p,
.about-section p,
.service-copy p,
.audience-card p,
.contact-card p,
.accordion-body,
.form-help,
.footer-copy {
    color: var(--site-muted);
    line-height: 1.75;
}

.section-space {
    padding: 5.5rem 0;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading .section-kicker,
.about-section .section-kicker,
.contact-section .section-kicker {
    color: var(--site-primary-dark);
    background: var(--site-secondary);
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.highlight-panel,
.contact-card,
.contact-form,
.service-card,
.audience-card {
    padding: 1.8rem;
}

.service-card h3,
.audience-card h3,
.highlight-panel h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--site-primary-dark);
}

.service-card ul,
.check-list {
    padding-left: 1.2rem;
    margin: 0;
}

.service-card li,
.check-list li {
    margin-bottom: 0.55rem;
    color: var(--site-text);
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.about-links a {
    font-weight: 700;
}

.about-visual {
    display: grid;
    gap: 1.15rem;
}

.about-figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 124, 130, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfb 100%);
    box-shadow: var(--site-shadow);
}

.about-figure img {
    display: block;
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.about-figure figcaption {
    display: grid;
    gap: 0.3rem;
    padding: 1.15rem 1.35rem 1.3rem;
    color: var(--site-muted);
    line-height: 1.7;
    font-weight: 600;
    background: #fff;
}

.about-caption-title {
    color: var(--site-primary-dark);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-info-card {
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(17, 124, 130, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--site-shadow);
}

.floating-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--site-secondary);
    color: var(--site-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-info-card strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--site-primary-dark);
    font-size: 1.05rem;
    line-height: 1.45;
}

.about-info-card p {
    margin-bottom: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.featured-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.featured-strip article {
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--site-border);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
    box-shadow: var(--site-shadow);
}

.featured-strip strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--site-primary-dark);
    font-size: 1rem;
}

.featured-strip p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
}

.service-copy {
    max-width: 920px;
    margin: 2rem auto 0;
    text-align: center;
}

.clientele-section {
    padding-top: 0;
}

.audience-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
}

.accordion-item {
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 700;
    color: var(--site-text);
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--site-primary-dark);
    background: #eff8f8;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(17, 124, 130, 0.18);
}

.contact-card a {
    font-weight: 700;
}

.contact-form label {
    font-weight: 700;
    color: var(--site-text);
}

.contact-form .form-control {
    border: 1px solid var(--site-border);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    color: var(--site-text);
}

.contact-form .form-control:focus {
    border-color: rgba(17, 124, 130, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(17, 124, 130, 0.12);
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.form-status.is-success {
    color: #1c8f4f;
}

.form-status.is-error {
    color: #b23b3b;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    padding: 3rem 0 2.4rem;
    background: #0d3f47;
    color: rgba(255, 255, 255, 0.82);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logos img {
    max-height: 66px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 56px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #fff;
    font-weight: 600;
}

.footer-copy {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
    z-index: 1040;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.75rem 0;
        border-top: 1px solid rgba(17, 124, 130, 0.1);
    }

    .site-nav .nav-item-cta {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .carousel-caption .container {
        margin-left: auto;
        padding-bottom: 2.5rem;
    }

    .featured-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-image {
        min-height: 520px;
    }

    .carousel-caption {
        text-align: center;
    }

    .carousel-caption p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .about-links,
    .footer-nav {
        justify-content: center;
    }

    .intro-strip {
        margin-top: -2rem;
    }

    .section-space {
        padding: 4.5rem 0;
    }

    .about-figure img {
        height: 320px;
    }

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

@media (max-width: 575.98px) {
    .hero-image {
        min-height: 560px;
    }

    .carousel-caption .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .btn,
    .hero-actions .btn,
    .contact-section .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
    }
}
