/* ===================================================== */
/* ================= BASE =============================== */
/* ===================================================== */

body {
    background-color: #0E0E0E;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: #fff;
}

/* ===================================================== */
/* ================= NAVBAR ============================= */
/* ===================================================== */

.navbar {
    background-color: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid #C6A85E;
    height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 90px;
    width: auto;
    transition: 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar .nav-link {
    color: #ddd !important;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #C6A85E !important;
}

/* ===================================================== */
/* ================= LANGUAGE FLAGS ===================== */
/* ===================================================== */

.language-flag {
    width: 36px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    pointer-events: auto;
}

.language-flag rect,
.language-flag circle,
.language-flag polygon {
    pointer-events: none;
}

.language-flag:hover {
    transform: scale(1.15);
}

/* ===================================================== */
/* ================= HERO =============================== */
/* ===================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.98) 40%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.2)),
        url('../img/hero-background-dna.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero-section h1 {
    line-height: 1.2;
}

.hero-ampoule {
    max-width: 530px;
    transform: translateX(-70px) translateY(30px);
    filter: drop-shadow(0 0 45px rgba(198, 168, 94, 0.85));
    transition: transform 0.4s ease;
}

.hero-ampoule:hover {
    transform: translateX(-60px) translateY(40px) scale(1.05);
}

/* ===================================================== */
/* ================= HERO BUTTONS ======================= */
/* ===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn-calc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #C6A85E;
    color: #C6A85E;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    line-height: 1.5;
}

.btn-calc:hover {
    background: rgba(198, 168, 94, 0.12);
    color: #E0C278;
    border-color: #E0C278;
}

/* ===================================================== */
/* ================= GOLD =============================== */
/* ===================================================== */

.text-gold {
    color: #C6A85E;
}

.btn-gold {
    background-color: #C6A85E;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #E0C278;
}

/* ===================================================== */
/* ================= CATEGORY SECTION =================== */
/* ===================================================== */

.category-section {
    background-color: #0c0c0c;
    border-top: 1px solid rgba(198, 168, 94, 0.3);
    border-bottom: 1px solid rgba(198, 168, 94, 0.3);
    position: relative;
    z-index: 10;
}

.category-section .nav {
    gap: 35px;
    overflow: visible !important;
}

.category-section .nav-link {
    color: #ccc !important;
    font-weight: 500;
    padding: 10px 0;
    transition: 0.3s ease;
}

.category-section .nav-link:hover {
    color: #C6A85E !important;
}

.category-section .nav-link.active::after {
    content: "";
    display: block;
    height: 3px;
    background-color: #C6A85E;
    margin-top: 5px;
}

.category-section .dropdown-menu {
    position: absolute;
    z-index: 9999;
}

/* ===================================================== */
/* ================= DROPDOWN =========================== */
/* ===================================================== */

.dropdown-menu {
    background-color: #111;
    border: 1px solid rgba(198, 168, 94, 0.35);
    border-radius: 8px;
    padding: 8px 0;
}

.dropdown-item {
    color: #ccc !important;
    padding: 10px 22px;
    transition: all 0.25s ease;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #C6A85E !important;
    color: #000 !important;
}

@media (min-width: 992px) {
    .category-section .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ===================================================== */
/* ================= PRODUCT SECTION ==================== */
/* ===================================================== */

.product-section {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid rgba(198, 168, 94, 0.2);
}

.product-fixed {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.product-fixed-image {
    max-width: 320px;
    margin-left: 20px;
    margin-top: -80px;
    filter: drop-shadow(0 0 35px rgba(198, 168, 94, 0.7));
}

.product-dynamic {
    padding-left: 30px;
}

.product-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #C6A85E;
}

.product-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #C6A85E, transparent);
    margin: 12px 0 20px 0;
}

.product-specs {
    font-size: 0.95rem;
    color: #eaeaea;
    margin-bottom: 22px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.product-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.product-benefits {
    list-style: none;
    padding-left: 0;
}

.product-benefits li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #ddd;
    padding-left: 26px;
    position: relative;
}

.product-benefits li::before {
    content: "✔";
    color: #C6A85E;
    position: absolute;
    left: 0;
}

.product-warning {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(197, 162, 83, 0.5);
    font-size: 0.85rem;
    color: #9c9c9c;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* ===================================================== */
/* ================= BENEFITS =========================== */
/* ===================================================== */

#benefits {
    background-color: #0E0E0E;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

#benefits img {
    filter: drop-shadow(0 0 8px rgba(198, 168, 94, 0.5));
}

/* ===================================================== */
/* ================= CONTACT ============================ */
/* ===================================================== */

#contact {
    background-color: #111;
}

#contact input,
#contact textarea {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #C6A85E;
    box-shadow: none;
}

/* ===================================================== */
/* ================= WHATSAPP PREMIUM =================== */
/* ===================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 60px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: whatsappEntrance 0.8s ease forwards;
    animation-delay: 1s;
    transition: transform 0.3s ease;
}

@keyframes whatsappEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2.5s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    border: 1px solid rgba(198, 168, 94, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===================================================== */
/* ================= RESPONSIVE ========================= */
/* ===================================================== */

@media (max-width: 992px) {

    .navbar {
        height: auto;
        min-height: 72px;
    }

    .navbar-logo {
        height: 64px;
    }

    .brand-name {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }

    .category-section .nav {
        gap: 18px;
        flex-wrap: nowrap;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-section .nav::-webkit-scrollbar {
        display: none;
    }

    .category-section .nav-item {
        flex: 0 0 auto;
    }

    .category-section .nav-link {
        white-space: nowrap;
    }

    .hero-section {
        text-align: center;
        padding: 100px 0;
        background-position: center right;
    }

    .hero-ampoule {
        max-width: 260px;
        transform: none;
        margin-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-fixed {
        justify-content: center;
    }

    .product-fixed-image {
        max-width: 260px;
        margin: 0 auto 30px;
    }

    .product-dynamic {
        padding-left: 0;
        text-align: center;
    }

    .product-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-calc {
        justify-content: center;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .contact-title {
        font-size: 1.7rem;
    }
}

/* ===================================================== */
/* ================= CONTACT FORM ======================= */
/* ===================================================== */

.contact-section {
    background: #0E0E0E;
    padding: 10px 0;
    border-top: 1px solid rgba(198, 168, 94, 0.15);
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.contact-form {
    background: #111;
    padding: 5px;
    border-radius: 0px;
    border: none;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

.contact-input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-input:focus {
    background: #1a1a1a;
    border-color: #C6A85E;
    box-shadow: 0 0 0 0.2rem rgba(198, 168, 94, 0.15);
    color: #fff;
}

.contact-input::placeholder {
    color: #777;
}

/* ===================================================== */
/* ================= FOOTER ============================ */
/* ===================================================== */

.footer-section {
    background: #0a0a0a;
    padding: 45px 0 35px 0;
    border-top: 1px solid rgba(198, 168, 94, 0.25);
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, #C6A85E, transparent);
    margin-bottom: 25px;
}

.footer-copy {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #C6A85E;
}

.footer-dot {
    color: #555;
}

/* ===================================================== */
/* ================= INTL TEL INPUT ==================== */
/* ===================================================== */

.iti {
    width: 100% !important;
    display: block;
}

.iti--allow-dropdown {
    width: 100% !important;
}

.iti__country-list {
    background-color: #111 !important;
    border: 1px solid rgba(198, 168, 94, 0.3) !important;
    color: #fff !important;
    max-height: 240px !important;
    overflow-y: auto !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
    z-index: 99999 !important;
}

.iti__country {
    color: #fff !important;
    padding: 8px 10px !important;
}

.iti__country:hover {
    background-color: #C6A85E !important;
    color: #000 !important;
}

.iti__selected-flag {
    background-color: #1a1a1a !important;
    padding-left: 15px;
    padding-right: 14px;
    height: 52px !important;
    display: flex;
    align-items: center;
    width: 100%;
}

.iti__flag-container {
    border-right: 1px solid #333 !important;
    height: 52px !important;
    min-width: max-content !important;
    width: auto !important;
}

.iti input {
    width: 100% !important;
    height: 52px !important;
    padding-left: 170px !important;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.iti--separate-dial-code .iti__selected-flag {
    min-width: max-content !important;
}

@media (max-width: 576px) {
    .iti__flag-container {
        min-width: max-content !important;
        width: auto !important;
    }

    .iti input {
        padding-left: 142px !important;
    }

    .iti--separate-dial-code .iti__selected-flag {
        min-width: max-content !important;
    }
}

@media (max-width: 768px) {
    .iti input {
        padding-left: 148px !important;
    }
}

/* ===================================================== */
/* ================= FORM ALERT ======================== */
/* ===================================================== */

.form-alert {
    padding: 12px 18px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid;
}

.form-alert.success {
    background: rgba(198, 168, 94, 0.1);
    color: #C6A85E;
    border-color: #C6A85E;
}

.form-alert.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: #dc3545;
}

/* ===================================================== */
/* ================= FLAG ACTIVE ======================= */
/* ===================================================== */

.language-flag.flag-active {
    outline: 2px solid #C6A85E;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===================================================== */
/* ================= PRIVACY======================= */
/* ===================================================== */

.privacy-section {
    min-height: 100vh;
    padding: 120px 0;
    padding-top: 100px;
}

.privacy-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px;
    border-radius: 12px;
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    border-top: 1px solid rgba(198, 168, 94, 0.3);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================= */
/* MOBILE NAVBAR GOLD FINAL */
/* ============================= */

@media (max-width: 991.98px) {

  .navbar-collapse {
    background-color: #C6A85E !important;
    padding: 20px;
    margin-top: 0;
  }

  /* remove comportamento desktop */
  .navbar-nav {
    gap: 0 !important;
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    color: #000 !important;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 0;
  }

  .navbar-nav .nav-link:hover {
    background-color: rgba(0,0,0,0.08);
  }

  .navbar-toggler {
    border: 2px solid #C6A85E;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

}

@media (max-width: 768px) {
    .privacy-section {
        min-height: auto;
        padding: 96px 0 40px;
    }

    .privacy-box {
        padding: 28px 18px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
