/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385d6;
    --secondary-color: #ff6b35;
    --accent-color: #ffd700;

    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-gray: #6b6b6b;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;

    --dark-bg: #1a1d29;
    --dark-card: #252936;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 76, 153, 0.95) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section--dark {
    background: var(--dark-bg);
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section--dark .section__subtitle {
    background: var(--secondary-color);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section--dark .section__title {
    color: var(--white);
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section--dark .section__description {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary i,
.btn--primary i {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.btn-secondary {
    background: var(--white);
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: 800;
}

.nav__logo img {
    height: 75px;
    width: auto;
    transition: var(--transition-normal);
}

.nav__logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    color: #d4af37;
    font-family: var(--font-heading);
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav__list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: var(--transition-normal);
}

.nav__link:hover,
.nav__link.active {
    color: #d4af37;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background-image:
        linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 76, 153, 0.92) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    color: var(--white);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #d4af37;
}

.hero__title .gradient-text {
    background: none !important;
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
}

.hero__description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1;
}

.stat__plus {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat__label {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero__image-wrapper i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition-normal);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about__text strong {
    color: #d4af37;
}

.about__image {
    display: grid;
    gap: 20px;
}

.about__card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-left: 4px solid #d4af37;
}

.about__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about__card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.about__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about__card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature__card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature__card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.feature__card:hover::before {
    transform: scaleX(1);
}

.feature__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.feature__icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service__image {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service__image i {
    font-size: 4rem;
    color: var(--white);
}

.service__card:nth-child(2) .service__image {
    background: var(--gradient-accent);
}

.service__card:nth-child(3) .service__image {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.service__card:nth-child(4) .service__image {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.service__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 25px 25px 15px;
}

.service__description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-weight: 600;
    margin: 0 25px 25px;
    transition: var(--transition-fast);
}

.service__link:hover {
    gap: 12px;
}

.service__stats {
    background: var(--off-white);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.service__stat i {
    color: #28a745;
    font-size: 1rem;
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.metric__card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.metric__card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.metric__card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.metric__number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
}

.metric__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.client__card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.client__card img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.client__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client__card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta__container {
    text-align: center;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta__description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: #d4af37;
}

.cta .btn-primary:hover {
    background: var(--off-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 68px;
    width: auto;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.footer__social-link:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__contact-item i {
    color: #d4af37;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact-item a {
    transition: var(--transition-fast);
}

.footer__contact-item a:hover {
    color: #d4af37;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer__legal-link {
    transition: var(--transition-fast);
}

.footer__legal-link:hover {
    color: #d4af37;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    .hero__container {
        gap: 40px !important;
    }

    .hero__image-wrapper {
        width: 350px !important;
        height: 350px !important;
    }

    .nav__list {
        gap: 30px;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 968px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }

    .header {
        height: 70px;
    }

    .nav {
        height: 70px;
    }

    .nav__logo img {
        height: 60px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 70px 30px 40px;
        transition: var(--transition-normal);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 2rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__image-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero__image-wrapper i {
        font-size: 7rem;
    }

    .about__container {
        grid-template-columns: 1fr;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        justify-content: center;
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        right: 90px;
        bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero {
        padding-top: calc(var(--header-height) + 30px) !important;
    }

    .section {
        padding: 50px 0;
    }

    .hero__image-wrapper {
        width: 280px !important;
        height: 280px !important;
    }

    .hero__image-wrapper i {
        font-size: 6.5rem !important;
    }

    .hero__title {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
    }

    .hero__description {
        font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
    }

    .container {
        padding: 0 15px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta .btn {
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
    }
}

@media screen and (max-width: 640px) {
    :root {
        --section-padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .section__title {
        font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    }

    .hero__image-wrapper {
        width: 220px !important;
        height: 220px !important;
    }

    .hero__image-wrapper i {
        font-size: 5.5rem !important;
    }

    .hero__stats {
        gap: 15px;
    }

    .stat__number {
        font-size: 2rem;
    }

    .services__grid,
    .features__grid {
        gap: 20px;
    }

    .service__card,
    .feature__card {
        padding: 25px 20px;
    }

    .service__title {
        font-size: 1.25rem;
        margin: 20px 20px 12px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-card {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
        --header-height: 65px;
    }

    .header {
        height: 65px;
    }

    .nav {
        height: 65px;
    }

    .nav__logo img {
        height: 50px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-subtext {
        font-size: 0.65rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 20px) !important;
        min-height: 85vh !important;
    }

    .hero__container {
        gap: 25px;
    }

    .hero__image-wrapper {
        width: 200px !important;
        height: 200px !important;
    }

    .hero__image-wrapper i {
        font-size: 5rem !important;
    }

    .hero__title {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
        margin-bottom: 15px !important;
    }

    .hero__description {
        font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
        margin-bottom: 20px !important;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px !important;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat__number {
        font-size: 1.75rem;
    }

    .stat__label {
        font-size: 0.75rem;
    }

    .section {
        padding: 40px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    }

    .section__subtitle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .services__grid,
    .features__grid,
    .metrics__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service__card,
    .feature__card,
    .metric__card {
        padding: 20px;
    }

    .service__image {
        height: 120px;
    }

    .service__image i {
        font-size: 3rem;
    }

    .service__title {
        font-size: 1.1rem;
        margin: 15px 15px 10px;
    }

    .service__description {
        font-size: 0.95rem;
        margin: 0 15px 15px;
    }

    .service__link {
        margin: 0 15px 15px;
        font-size: 0.9rem;
    }

    .feature__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature__icon i {
        font-size: 1.75rem;
    }

    .feature__title {
        font-size: 1.1rem;
    }

    .metric__number {
        font-size: 2.2rem;
    }

    .cta {
        padding: 50px 0;
    }

    .cta__title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 15px;
    }

    .cta__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about__card {
        padding: 20px;
    }

    .about__card i {
        font-size: 2rem;
    }

    .about__card h3 {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .content-text p {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 20px;
        gap: 15px;
    }

    .highlight-box > i {
        font-size: 2rem;
    }

    .info-card {
        padding: 15px;
    }

    .service-detail__item {
        grid-template-columns: 80px 1fr;
        padding: 20px;
        gap: 15px;
    }

    .service-detail__icon {
        width: 80px;
        height: 80px;
    }

    .service-detail__icon i {
        font-size: 2rem;
    }

    .service-detail__content h3 {
        font-size: 1.2rem;
    }

    .cta-card {
        padding: 20px;
    }

    .cta-card i {
        font-size: 2.5rem;
    }

    .cta-card h3 {
        font-size: 1.1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer__logo img {
        height: 50px;
    }

    .footer__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 75px;
        right: 12px;
    }

    .scroll-top i {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-padding: 30px 0;
        --header-height: 60px;
    }

    .header {
        height: 60px;
    }

    .nav {
        height: 60px;
    }

    .nav__logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-subtext {
        font-size: 0.6rem;
    }

    .nav__list {
        gap: 20px;
    }

    .hero {
        min-height: 80vh !important;
        padding-top: calc(var(--header-height) + 15px) !important;
    }

    .hero__container {
        gap: 15px;
    }

    .hero__title {
        font-size: clamp(1.3rem, 3.5vw, 2rem) !important;
        margin-bottom: 12px !important;
    }

    .hero__description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem) !important;
        margin-bottom: 15px !important;
    }

    .hero__image-wrapper {
        width: 170px !important;
        height: 170px !important;
    }

    .hero__image-wrapper i {
        font-size: 3.8rem !important;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 0.85rem;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat {
        padding: 10px 5px;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .stat__label {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .section {
        padding: 30px 0;
    }

    .section__header {
        margin-bottom: 30px;
    }

    .section__title {
        font-size: clamp(1.3rem, 3.2vw, 1.9rem) !important;
        margin-bottom: 12px;
    }

    .section__subtitle {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .container {
        padding: 0 14px;
    }

    .services__grid,
    .features__grid,
    .metrics__grid {
        gap: 12px;
    }

    .service__card,
    .feature__card {
        padding: 18px;
    }

    .service__image {
        height: 100px;
    }

    .service__image i {
        font-size: 2.5rem;
    }

    .service__title {
        font-size: 1rem;
        margin: 12px 12px 8px;
    }

    .service__description {
        font-size: 0.9rem;
        margin: 0 12px 12px;
    }

    .feature__icon {
        width: 50px;
        height: 50px;
    }

    .feature__icon i {
        font-size: 1.5rem;
    }

    .feature__title {
        font-size: 1rem;
    }

    .metric__number {
        font-size: 2rem;
    }

    .metric__label {
        font-size: 0.9rem;
    }

    .cta {
        padding: 40px 0;
    }

    .cta__title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        margin-bottom: 12px;
    }

    .cta__description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .about__card {
        padding: 18px;
    }

    .about__card i {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .content-grid {
        gap: 20px;
    }

    .content-text h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .content-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .highlight-box {
        padding: 15px;
        gap: 12px;
    }

    .highlight-box > i {
        font-size: 1.75rem;
    }

    .service-detail__item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px;
        gap: 12px;
    }

    .service-detail__icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .service-detail__icon i {
        font-size: 1.75rem;
    }

    .service-detail__content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .check-list li {
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer__logo img {
        height: 45px;
    }

    .footer__title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer__link {
        font-size: 0.9rem;
    }

    .footer__social {
        gap: 10px;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    .footer__social-link i {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-float i {
        font-size: 1.3rem;
    }

    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 70px;
        right: 10px;
    }

    .scroll-top i {
        font-size: 1.1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   SERVICES DETAIL PAGES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    display: none;
}

/* Hero Service */
.hero--service {
    min-height: 80vh;
    padding: calc(var(--header-height) + 60px) 0 60px;
    display: flex;
    align-items: center;
}

.hero--service .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero--service .hero__content {
    max-width: 100%;
}

.hero--service .hero__buttons {
    margin-bottom: 0;
}

.hero--service .hero__image-wrapper {
    width: 280px;
    height: 280px;
}

.hero--service .hero__image-wrapper i {
    font-size: 140px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.content-text h2 {
    margin-bottom: 25px;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Highlight Box */
.highlight-box {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid #d4af37;
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.highlight-box>i {
    font-size: 2.5rem;
    color: #d4af37;
    flex-shrink: 0;
}

.highlight-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.check-list i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Content Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
    color: var(--white);
}

.cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* Info Card */
.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
}

.info-card h4 i {
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-light);
}

.info-card ul li:last-child {
    border-bottom: none;
}

/* Services Detail List */
.services-detail {
    display: grid;
    gap: 40px;
}

.service-detail__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.service-detail__item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-detail__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail__icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail__content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-detail__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.feature-list i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: #d4af37;
    font-size: 1.25rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-sidebar {
        position: static;
    }

    .service-detail__item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail__icon {
        margin: 0 auto;
    }

    .hero--service .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero--service .hero__buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero--service {
        min-height: 50vh;
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .hero--service .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero--service .hero__buttons {
        justify-content: center;
    }

    .hero--service .hero__image-wrapper {
        width: 250px;
        height: 250px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 5.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .services-detail {
        gap: 30px;
    }

    .service-detail__item {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Media queries adicionais para hero--service */
@media screen and (max-width: 1024px) {
    .hero--service .hero__image-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 120px;
    }
}

@media screen and (max-width: 768px) {
    .hero--service .container {
        gap: 40px;
    }

    .hero--service .hero__image-wrapper {
        width: 250px;
        height: 250px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 100px;
    }

    .content-grid {
        gap: 30px;
    }
}

@media screen and (max-width: 640px) {
    .hero--service {
        min-height: 60vh;
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .hero--service .container {
        gap: 30px;
    }

    .hero--service .hero__content {
        text-align: center;
    }

    .hero--service .hero__buttons {
        justify-content: center;
    }

    .hero--service .hero__image-wrapper {
        width: 220px;
        height: 220px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 80px;
    }
}

@media screen and (max-width: 576px) {
    .hero--service {
        min-height: 55vh;
        padding: calc(var(--header-height) + 30px) 0 30px;
    }

    .hero--service .container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .hero--service .hero__content {
        text-align: center;
    }

    .hero--service .hero__title {
        font-size: clamp(1.4rem, 3.8vw, 2rem);
        margin-bottom: 12px;
    }

    .hero--service .hero__description {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    .hero--service .hero__buttons {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .hero--service .hero__image-wrapper {
        width: 200px;
        height: 200px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 70px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-sidebar {
        position: static;
        gap: 20px;
    }

    .cta-card {
        padding: 20px;
    }

    .info-card {
        padding: 18px;
    }

    .info-card h4 {
        font-size: 0.95rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .services-detail {
        gap: 25px;
    }

    .service-detail__item {
        gap: 15px;
        padding: 20px;
    }

    .service-detail__icon {
        width: 80px;
        height: 80px;
    }

    .service-detail__icon i {
        font-size: 2rem;
    }

    .service-detail__content h3 {
        font-size: 1.2rem;
    }

    .service-detail__content p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 18px;
    }

    .highlight-box > i {
        font-size: 2rem;
    }

    .check-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 15px 15px 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero--service {
        min-height: 50vh;
        padding: calc(var(--header-height) + 20px) 0 25px;
    }

    .hero--service .hero__image-wrapper {
        width: 160px;
        height: 160px;
    }

    .hero--service .hero__image-wrapper i {
        font-size: 50px;
    }

    .hero--service .hero__title {
        font-size: clamp(1.2rem, 3.2vw, 1.8rem);
    }

    .hero--service .hero__description {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    .content-sidebar {
        gap: 15px;
    }

    .cta-card {
        padding: 15px;
    }

    .cta-card i {
        font-size: 2.2rem;
    }

    .cta-card h3 {
        font-size: 1rem;
    }

    .info-card {
        padding: 15px;
    }

    .service-detail__item {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }

    .service-detail__icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .service-detail__content h3 {
        font-size: 1.1rem;
    }

    .feature-list li {
        font-size: 0.9rem;
        gap: 8px;
    }

    .tags {
        gap: 8px;
    }

    .tag {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.dropdown.active .dropdown__menu,
.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.dropdown__link:hover,
.dropdown__link.active {
    background: var(--off-white);
    color: #d4af37;
}

@media (max-width: 768px) {
    .dropdown__menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 102, 204, 0.1);
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown__menu {
        display: block;
    }

    .dropdown__link {
        color: var(--white);
    }

    .dropdown__link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}



