:root {
    --adgro-purple: #76245d;
    --adgro-purple-dark: #45142f;
    --adgro-purple-light: #a74487;
    --adgro-black: #09070a;
    --adgro-black-2: #141014;
    --adgro-white: #ffffff;
    --adgro-text: #29232a;
    --adgro-muted: #746b72;
    --adgro-border: #e9e1e7;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--adgro-text);
    background: #fff;
}


a {
    transition: .25s ease;
}


.container {
    max-width: 1240px;
}


/* =========================================================
   TOP BAR
========================================================= */

.adgro-topbar {
    background: var(--adgro-black);
    color: #c8bec5;
    font-size: 12px;
}


.adgro-topbar-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.topbar-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}


.topbar-left i {
    color: #c76ba2;
}


.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


    .topbar-right a {
        color: #fff;
        text-decoration: none;
    }


        .topbar-right a:hover {
            color: #d86aaa;
        }


    .topbar-right i {
        margin-right: 5px;
        color: #d66ca9;
    }


/* =========================================================
   HEADER
========================================================= */

.adgro-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--adgro-border);
    box-shadow: 0 5px 25px rgba(50,20,40,.06);
}


.adgro-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.adgro-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}


    .adgro-logo img {
        width: 190px;
        max-height: 65px;
        object-fit: contain;
    }


/* =========================================================
   NAVIGATION
========================================================= */

.adgro-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}


    .adgro-nav > .nav-link,
    .dropdown-main {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 13px;
        color: #312b31;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }


        .adgro-nav > .nav-link:hover,
        .dropdown-main:hover {
            color: var(--adgro-purple);
        }


/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}


.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    border: 1px solid var(--adgro-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(40,15,35,.13);
    transition: .25s ease;
}


.nav-dropdown:hover
.nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    color: #4b4148;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


    .nav-dropdown-menu a:hover {
        color: var(--adgro-purple);
        background: #faf1f7;
    }


.nav-dropdown-menu i {
    width: 24px;
    color: var(--adgro-purple);
    font-size: 15px;
}


/* =========================================================
   HEADER CTA
========================================================= */

.adgro-header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}


.header-whatsapp,
.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}


.header-whatsapp {
    color: #fff;
    background: #3b9c61;
}


    .header-whatsapp:hover {
        color: #fff;
        background: #2f824f;
    }


.header-call {
    color: #fff;
    background: var(--adgro-purple);
}


    .header-call:hover {
        color: #fff;
        background: var(--adgro-purple-dark);
    }


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--adgro-purple);
    font-size: 22px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 2000;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,.18);
    transition: .3s ease;
}


    .mobile-menu.active {
        right: 0;
    }


.mobile-menu-header {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient( 135deg, var(--adgro-black), var(--adgro-purple-dark) );
}


    .mobile-menu-header span {
        font-size: 17px;
        font-weight: 800;
    }


    .mobile-menu-header button {
        border: 0;
        color: #fff;
        background: transparent;
        font-size: 20px;
    }


.mobile-menu nav > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee8ed;
    color: #302a30;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


    .mobile-menu nav > a:hover {
        color: var(--adgro-purple);
        background: #faf3f8;
    }


.mobile-service-links {
    padding: 5px 20px 10px 50px;
    background: #faf7f9;
}


    .mobile-service-links a {
        display: block;
        padding: 8px 0;
        color: #6b6068;
        font-size: 11px;
        text-decoration: none;
    }


        .mobile-service-links a:hover {
            color: var(--adgro-purple);
        }


.mobile-menu-contact {
    display: grid;
    gap: 8px;
    padding: 20px;
}


    .mobile-menu-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px;
        border-radius: 8px;
        color: #fff;
        background: var(--adgro-purple);
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }


        .mobile-menu-contact a:nth-child(2) {
            background: #3b9c61;
        }


.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.55);
    transition: .3s ease;
}


    .mobile-overlay.active {
        visibility: visible;
        opacity: 1;
    }


body.menu-open {
    overflow: hidden;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.adgro-footer-cta {
    padding: 60px 0;
    background: var(--adgro-bg, #f7f4f7);
}


.footer-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 45px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: radial-gradient( circle at 90% 20%, rgba(213,99,165,.3), transparent 30% ), linear-gradient( 135deg, #09070a, #4c1739 );
    box-shadow: 0 20px 50px rgba(50,15,40,.15);
}


.footer-cta-label {
    color: #d86cab;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}


.footer-cta-box h2 {
    margin: 7px 0 8px;
    font-size: clamp(1.7rem,3vw,2.5rem);
    font-weight: 900;
}


    .footer-cta-box h2 span {
        color: #d66ca9;
    }


.footer-cta-box p {
    margin: 0;
    color: #c6bac2;
    font-size: 13px;
}


.footer-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


.footer-call-btn,
.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 125px;
    padding: 13px 18px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}


.footer-call-btn {
    color: #fff;
    background: var(--adgro-purple);
}


.footer-whatsapp-btn {
    color: #fff;
    background: #3b9c61;
}


/* =========================================================
   FOOTER
========================================================= */

.adgro-footer {
    padding: 65px 0 20px;
    color: #b9adb5;
    background: #0b090c;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
    gap: 45px;
}


.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}


    .footer-logo img {
        width: 180px;
        max-height: 65px;
        object-fit: contain;
    }


.footer-company p {
    max-width: 340px;
    margin-bottom: 10px;
    color: #958992;
    font-size: 11px;
    line-height: 1.8;
}


.footer-company strong {
    color: #ddd3da;
}


.footer-column h3 {
    margin: 5px 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}


.footer-column > a {
    display: block;
    margin-bottom: 11px;
    color: #a99ca5;
    font-size: 11px;
    text-decoration: none;
}


    .footer-column > a:hover {
        color: #d66ca9;
        transform: translateX(3px);
    }


    .footer-column > a i {
        margin-right: 5px;
        color: #76245d;
    }


.footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
}


.footer-contact i {
    flex: 0 0 auto;
    color: #d66ca9;
}


.footer-contact span,
.footer-contact a {
    color: #a99ca5;
    font-size: 11px;
    line-height: 1.6;
    text-decoration: none;
}


    .footer-contact a:hover {
        color: #fff;
    }


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}


    .footer-social a {
        width: 33px;
        height: 33px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px;
        color: #aaa;
        background: rgba(255,255,255,.03);
        font-size: 13px;
        text-decoration: none;
    }


        .footer-social a:hover {
            color: #fff;
            border-color: #76245d;
            background: #76245d;
        }


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #766b74;
    font-size: 10px;
}


    .footer-bottom strong {
        color: #b8adb5;
    }


.footer-legal-links {
    display: flex;
    gap: 10px;
}


    .footer-legal-links a {
        color: #948891;
        text-decoration: none;
    }


        .footer-legal-links a:hover {
            color: #d66ca9;
        }


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 25px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .floating-contact a {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 13px;
        border-radius: 50px;
        color: #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,.2);
        font-size: 10px;
        font-weight: 800;
        text-decoration: none;
    }


.floating-whatsapp {
    background: #3b9c61;
}


.floating-call {
    background: var(--adgro-purple);
}


.floating-contact a:hover {
    color: #fff;
    transform: translateY(-2px);
}


.floating-contact i {
    font-size: 14px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 125px;
    z-index: 800;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: var(--adgro-black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}


    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .back-to-top:hover {
        background: var(--adgro-purple);
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .adgro-nav {
        display: none;
    }

    .adgro-header-cta {
        margin-left: auto;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .adgro-topbar-inner {
        justify-content: center;
    }

    .topbar-left {
        display: none;
    }

    .adgro-topbar {
        padding: 6px 0;
    }

    .adgro-logo img {
        width: 160px;
    }

    .header-whatsapp span,
    .header-call span {
        display: none;
    }

    .header-whatsapp,
    .header-call {
        width: 38px;
        height: 38px;
        padding: 0;
    }

    .footer-cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 500px) {

    .adgro-header-inner {
        min-height: 70px;
    }

    .adgro-logo img {
        width: 140px;
    }

    .header-call {
        display: none;
    }

    .footer-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .footer-call-btn,
    .footer-whatsapp-btn {
        width: 100%;
    }

    .floating-contact {
        right: 10px;
        bottom: 15px;
    }

        .floating-contact a {
            width: 42px;
            height: 42px;
            justify-content: center;
            padding: 0;
        }

        .floating-contact span {
            display: none;
        }

    .back-to-top {
        right: 10px;
        bottom: 115px;
    }
}
