:root {
    --yemo-red: #ff102c;
    --yemo-red-dark: #c9001b;
    --yemo-red-soft: rgba(255, 16, 44, 0.1);
    --yemo-red-soft-2: rgba(255, 16, 44, 0.18);
    --yemo-teal: #003f49;
    --yemo-teal-dark: #002b33;
    --yemo-teal-soft: rgba(0, 63, 73, 0.1);
    --yemo-black: #020607;
    --yemo-white: #ffffff;
    --yemo-soft: #f3f7f8;
    --yemo-muted: #64748b;
    --yemo-border: rgba(0, 63, 73, 0.12);
    --yemo-shadow: 0 18px 45px rgba(0, 43, 51, 0.16);
    --yemo-shadow-soft: 0 10px 28px rgba(0, 43, 51, 0.1);
    --yemo-radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--yemo-teal-dark);
    background: var(--yemo-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
        "FILL" 0,
        "wght" 500,
        "GRAD" 0,
        "opsz" 24;
}

.icon-inline {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 6px;
}

.nav-icon {
    font-size: 19px;
    margin-right: 5px;
    vertical-align: middle;
}

.form-icon {
    font-size: 19px;
    margin-right: 5px;
    color: var(--yemo-red);
    vertical-align: middle;
}

.alert-icon {
    font-size: 22px;
    margin-right: 8px;
    flex: 0 0 auto;
}

.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yemo-red-soft);
    color: var(--yemo-red);
    flex: 0 0 auto;
}

.icon-circle .material-symbols-rounded {
    font-size: 25px;
}

.yemo-nav {
    background: rgba(0, 43, 51, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.yemo-nav .navbar-brand {
    letter-spacing: 0.02em;
    color: var(--yemo-white);
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--yemo-white);
    padding: 3px;
}

.yemo-nav .nav-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
    transition: all 0.2s ease;
}

.yemo-nav .nav-link:hover,
.yemo-nav .nav-link:focus {
    color: var(--yemo-white);
}

.yemo-nav .nav-cta {
    background: var(--yemo-red);
    color: var(--yemo-white) !important;
    border-radius: 999px;
    padding: 0.5rem 1.1rem !important;
    margin-left: 0.4rem;
    box-shadow: 0 10px 24px rgba(255, 16, 44, 0.28);
}

.yemo-nav .nav-cta:hover {
    background: var(--yemo-red-dark);
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 150px 0 95px;
    color: var(--yemo-white);
    background:
        radial-gradient(circle at 78% 25%, rgba(255, 16, 44, 0.28), transparent 28%),
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, var(--yemo-black) 0%, var(--yemo-teal-dark) 42%, var(--yemo-teal) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 43, 51, 0.18)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 64px
        );
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 36px;
    opacity: 0.95;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}

.hero-shape-red {
    width: 420px;
    height: 220px;
    background: var(--yemo-red);
    top: 95px;
    right: -80px;
    transform: rotate(41deg);
}

.hero-shape-teal {
    width: 520px;
    height: 260px;
    background: rgba(0, 63, 73, 0.72);
    bottom: -90px;
    left: -120px;
    transform: rotate(-18deg);
}

.hero-section h1 {
    max-width: 720px;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.hero-section .lead {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.22rem;
}

.yemo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 16, 44, 0.16);
    color: var(--yemo-white);
    border: 1px solid rgba(255, 16, 44, 0.52);
    padding: 0.65rem 1rem;
    font-weight: 800;
}

.yemo-badge .material-symbols-rounded {
    font-size: 19px;
}

.btn-yemo-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yemo-red);
    border-color: var(--yemo-red);
    color: var(--yemo-white);
    font-weight: 800;
    border-radius: 999px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    box-shadow: 0 18px 34px rgba(255, 16, 44, 0.28);
}

.btn-yemo-primary:hover,
.btn-yemo-primary:focus {
    background: var(--yemo-red-dark);
    border-color: var(--yemo-red-dark);
    color: var(--yemo-white);
    transform: translateY(-1px);
}

.btn-yemo-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--yemo-white);
    font-weight: 800;
    border-radius: 999px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
}

.btn-yemo-outline:hover,
.btn-yemo-outline:focus {
    background: var(--yemo-white);
    border-color: var(--yemo-white);
    color: var(--yemo-teal-dark);
    transform: translateY(-1px);
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    color: var(--yemo-teal-dark);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--yemo-shadow);
    border: 1px solid rgba(255, 255, 255, 0.64);
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
    background: var(--yemo-red-soft);
    border-radius: 50%;
}

.hero-card-topline {
    width: 68px;
    height: 6px;
    border-radius: 999px;
    background: var(--yemo-red);
    margin-bottom: 1rem;
}

.hero-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yemo-teal-dark);
    color: var(--yemo-white);
    margin-bottom: 1rem;
    box-shadow: 0 16px 32px rgba(0, 43, 51, 0.2);
}

.hero-card-icon .material-symbols-rounded {
    font-size: 36px;
    font-variation-settings:
        "FILL" 1,
        "wght" 600,
        "GRAD" 0,
        "opsz" 24;
}

.hero-card p {
    color: var(--yemo-muted);
    position: relative;
    z-index: 1;
}

.hero-features {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.4rem;
    position: relative;
    z-index: 1;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--yemo-soft);
    border: 1px solid var(--yemo-border);
    color: var(--yemo-teal-dark);
    padding: 0.8rem 1rem;
    border-radius: 16px;
    font-weight: 800;
}

.hero-features .material-symbols-rounded {
    color: var(--yemo-red);
    font-size: 23px;
}

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

.section-soft {
    background:
        radial-gradient(circle at top right, var(--yemo-teal-soft), transparent 32%),
        var(--yemo-soft);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yemo-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--yemo-red);
}

.section-kicker .material-symbols-rounded {
    font-size: 20px;
}

.section-kicker-light {
    color: var(--yemo-white);
}

.section-kicker-light::before {
    background: var(--yemo-red);
}

section h2 {
    color: var(--yemo-teal-dark);
    letter-spacing: -0.03em;
}

section p {
    color: var(--yemo-muted);
}

.mini-card {
    height: 100%;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem;
    background: var(--yemo-white);
    border: 1px solid var(--yemo-border);
    border-radius: var(--yemo-radius);
    color: var(--yemo-teal-dark);
    font-weight: 800;
    box-shadow: var(--yemo-shadow-soft);
    transition: all 0.22s ease;
}

.mini-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 16, 44, 0.34);
}

.mini-card-icon {
    flex-direction: column;
    gap: 0.75rem;
}

.service-card {
    border-radius: var(--yemo-radius);
    overflow: hidden;
    transition: all 0.22s ease;
    background: var(--yemo-white);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--yemo-shadow) !important;
}

.service-card .card-body {
    padding: 1.35rem;
}

.service-card h3 {
    color: var(--yemo-teal-dark);
}

.service-card h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: var(--yemo-red);
    border-radius: 999px;
    margin-top: 0.65rem;
}

.service-img {
    height: 220px;
    object-fit: cover;
    background: var(--yemo-teal-dark);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yemo-white);
    background: var(--yemo-teal-dark);
    margin-bottom: 1rem;
}

.service-icon .material-symbols-rounded {
    font-size: 28px;
    font-variation-settings:
        "FILL" 1,
        "wght" 600,
        "GRAD" 0,
        "opsz" 24;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--yemo-red);
    font-weight: 900;
    margin-top: 0.6rem;
}

.service-link:hover {
    color: var(--yemo-red-dark);
}

.service-link .material-symbols-rounded {
    font-size: 19px;
}

.benefit {
    position: relative;
    height: 100%;
    min-height: 96px;
    background: var(--yemo-white);
    border: 1px solid var(--yemo-border);
    border-radius: var(--yemo-radius);
    padding: 1.2rem 1.2rem 1.2rem 1.6rem;
    color: var(--yemo-teal-dark);
    font-weight: 800;
    box-shadow: var(--yemo-shadow-soft);
    overflow: hidden;
}

.benefit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 6px;
    border-radius: 999px;
    background: var(--yemo-red);
}

.benefit-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-section {
    color: var(--yemo-white);
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 16, 44, 0.26), transparent 28%),
        linear-gradient(135deg, var(--yemo-black), var(--yemo-teal-dark));
}

.promo-section h2 {
    color: var(--yemo-white);
}

.promo-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--yemo-radius);
    padding: 1.35rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.promo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yemo-red);
    color: var(--yemo-white);
    margin-bottom: 1rem;
}

.promo-icon .material-symbols-rounded {
    font-size: 27px;
}

.promo-card h3 {
    color: var(--yemo-white);
}

.promo-card p {
    color: rgba(255, 255, 255, 0.75);
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--yemo-white);
    font-weight: 900;
}

.promo-link:hover {
    color: rgba(255, 255, 255, 0.78);
}

.promo-link .material-symbols-rounded {
    font-size: 19px;
}

.gallery-card {
    border-radius: var(--yemo-radius);
    overflow: hidden;
    background: var(--yemo-white);
}

.gallery-row {
    position: relative;
}

.gallery-col {
    position: relative;
}

.gallery-label {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 43, 51, 0.82);
    color: var(--yemo-white);
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.gallery-label-after {
    background: rgba(255, 16, 44, 0.88);
}

.gallery-label .material-symbols-rounded {
    font-size: 17px;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--yemo-teal-dark);
}

.testimonial {
    position: relative;
    height: 100%;
    background: var(--yemo-white);
    border: 1px solid var(--yemo-border);
    border-radius: var(--yemo-radius);
    padding: 1.4rem;
    box-shadow: var(--yemo-shadow-soft);
    overflow: hidden;
}

.testimonial::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: var(--yemo-red-soft);
}

.testimonial-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yemo-teal-dark);
    color: var(--yemo-white);
    margin-bottom: 0.8rem;
}

.testimonial-icon .material-symbols-rounded {
    font-size: 30px;
}

.stars {
    color: var(--yemo-red);
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.testimonial p {
    color: var(--yemo-teal-dark);
}

.testimonial strong {
    color: var(--yemo-teal);
}

.contact-section {
    background:
        linear-gradient(180deg, var(--yemo-soft), var(--yemo-white));
}

.public-form {
    background: var(--yemo-white);
    border: 1px solid var(--yemo-border);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: var(--yemo-shadow-soft);
}

.public-form .form-label {
    display: inline-flex;
    align-items: center;
    color: var(--yemo-teal-dark);
    font-weight: 800;
    font-size: 0.92rem;
}

.public-form .form-control,
.public-form .form-select {
    border-radius: 14px;
    border: 1px solid rgba(0, 63, 73, 0.18);
    min-height: 48px;
}

.public-form textarea.form-control {
    min-height: 120px;
}

.public-form .form-control:focus,
.public-form .form-select:focus {
    border-color: var(--yemo-red);
    box-shadow: 0 0 0 0.22rem rgba(255, 16, 44, 0.12);
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--yemo-muted);
}

.location-address .material-symbols-rounded {
    color: var(--yemo-red);
    font-size: 24px;
    flex: 0 0 auto;
}

.location-reference {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--yemo-red-soft);
    border-left: 5px solid var(--yemo-red);
    color: var(--yemo-teal-dark);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-reference .material-symbols-rounded {
    color: var(--yemo-red);
    flex: 0 0 auto;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--yemo-white);
    border: 1px solid var(--yemo-border);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--yemo-shadow-soft);
}

.contact-info-box .material-symbols-rounded {
    color: var(--yemo-red);
}

.contact-info-box a {
    color: var(--yemo-teal-dark);
    font-weight: 800;
}

.contact-info-box a:hover {
    color: var(--yemo-red);
}

.map-box {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--yemo-border);
    box-shadow: var(--yemo-shadow-soft);
    background: var(--yemo-teal-dark);
}

.map-box iframe {
    display: block;
    width: 100%;
    min-height: 360px;
}

.footer-yemo {
    background: var(--yemo-black);
    color: rgba(255, 255, 255, 0.82);
    border-top: 5px solid var(--yemo-red);
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact .material-symbols-rounded {
    font-size: 20px;
    color: var(--yemo-red);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--yemo-red);
    color: var(--yemo-white);
    border-radius: 999px;
    padding: 0.9rem 1.15rem;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(255, 16, 44, 0.32);
    transition: all 0.2s ease;
}

.whatsapp-float:hover {
    background: var(--yemo-red-dark);
    color: var(--yemo-white);
    transform: translateY(-2px);
}

.whatsapp-float .material-symbols-rounded {
    font-size: 22px;
}

.alert {
    display: flex;
    align-items: flex-start;
    border-radius: 16px;
    border: 0;
}

.alert-danger {
    background: rgba(255, 16, 44, 0.1);
    color: var(--yemo-red-dark);
}

.alert-success {
    background: rgba(0, 63, 73, 0.1);
    color: var(--yemo-teal-dark);
}

.btn-throbber:disabled {
    opacity: 0.8;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .yemo-nav .navbar-collapse {
        background: rgba(0, 43, 51, 0.98);
        border-radius: 20px;
        margin-top: 0.8rem;
        padding: 1rem;
    }

    .yemo-nav .nav-link {
        width: 100%;
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
    }

    .yemo-nav .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 75px;
    }

    .hero-shape-red {
        width: 280px;
        height: 150px;
        right: -120px;
        top: 110px;
    }

    .hero-shape-teal {
        width: 360px;
        height: 190px;
        left: -170px;
    }

    .hero-section h1 {
        font-size: 2.45rem;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        padding: 116px 0 62px;
    }

    .hero-section h1 {
        font-size: 2.05rem;
    }

    .hero-section .lead {
        font-size: 1.05rem;
    }

    .hero-card,
    .public-form {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .btn-yemo-primary,
    .btn-yemo-outline {
        width: 100%;
    }

    .service-img,
    .gallery-img {
        height: 190px;
    }

    .mini-card {
        min-height: 120px;
        padding: 1rem;
        font-size: 0.92rem;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}