/* ==================== VARIABLES & GENERAL STYLES ==================== */

:root {
    --primary-gold: #D4AF37;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --accent-gold: #ffd700;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

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

.navbar {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)) contrast(1.1);
    mix-blend-mode: lighten;
}

.brand-name-logo {
    height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

@media (max-width: 578px) {
    .brand-name-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-name-logo {
        display: none;
    }

    .phone-section {
        display: flex;
    }
}

.phone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex: 1;
}

.header-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.phone-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
    border-radius: 2px;
}´



.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 2px solid var(--primary-gold);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

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

.privacy-section {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.privacy-content p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.privacy-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-muted);
    position: relative;
    line-height: 1.6;
}

.privacy-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* ==================== WHATSAPP BUTTON ==================== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    z-index: 900;
}

.whatsapp-button svg {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
    animation: whatsappGlow 2s ease-in-out infinite, whatsappBounce 5s ease-in-out infinite;
}

.whatsapp-button:hover svg {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    transform: scale(1.1);
}

@keyframes whatsappGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    }
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-10px);
    }
    30% {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-button svg {
        width: 55px;
        height: 55px;
    }
}

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

.footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-gold);
    padding: 4rem 2rem 2rem;
    color: var(--text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    mix-blend-mode: lighten;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-brand-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    margin-top: 1rem;
}

.footer-privacy-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-privacy-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.glow-text {
    color: #FFD700;
    animation: glowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px #FFD700, 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    text-decoration: underline;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* Tablets */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

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

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .privacy-section {
        padding: 2rem 1rem;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .privacy-content p {
        font-size: 0.95rem;
    }

    .privacy-content li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }

    .footer-container {
        gap: 2rem;
    }
}
