/* ==================== 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: flex-end;
    gap: 1.5rem;
    flex: 1;
    align-items: center;
}

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

.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: 930px) {
    .brand-name-logo {
        display: none;
    }

    .phone-section {
        display: flex;
    }
}

.phone-section {
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    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.65rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
    text-align: center;

}

.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);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: slideUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    mix-blend-mode: lighten;
    animation: pulse 2s ease-in-out infinite;
    order: 1;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)); }
    50% { filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.8)); }
}

@keyframes glowPulse {
    0%, 100% { 
        color: #FFD700;
        text-shadow: 0 0 10px #FFD700, 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    }
    50% { 
        color: #FFF8DC;
        text-shadow: 0 0 20px #FFD700, 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
    }
}

.hero-title-logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    order: 2;
}

.hero-subtitle {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 800;
    order: 3;
    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);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 500;
    order: 5;
}

.cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    order: 4;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==================== SERVICES SECTION ==================== */

.services {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    background-image: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - Centrar último card */
@media (min-width: 1025px) {
    .service-card:nth-last-child(1):nth-child(3n+1) {
        grid-column: 2;
    }
}

@media (max-width: 930px) {
    .services {
        padding: 3rem 1.5rem;
    }

    .services-container {
        padding: 0 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
        min-width: 0;
        max-width: 100%;
    }
}

.service-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* ==================== COMING SOON SERVICES ==================== */

.service-card.coming-soon {
    opacity: 0.75;
    cursor: not-allowed;
}

.service-card.coming-soon:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
}

.service-card.coming-soon:hover .service-icon img {
    transform: none;
}

.coming-soon-badge {
    position: absolute;
    top: 3rem;
    right: -4.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--dark-bg);
    padding: 0.5rem 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    width: 280px;
    text-align: center;
    text-transform: uppercase;
    z-index: 10;
}


/* ==================== 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;
    }
}


/* ==================== ABOUT SECTION ==================== */

.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--card-bg), rgba(10, 10, 10, 0.95));
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.about-logo {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    mix-blend-mode: lighten;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ==================== 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;
}

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

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

.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-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: 930px) {
    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
        font-weight: 800;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

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

    .about-logo {
        width: 200px;
        height: 200px;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

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

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

    .brand-name {
        font-size: 1.1rem;
    }

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

    .hero {
        min-height: 100vh;
        padding: 3rem 1rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2rem;
        font-weight: 800;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    .hero-title-logo {
    max-width: 90%;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem; /* distância do menu de navegação */
}

.social-link img {
    width: 22px;
    height: 22px;
    display: block;
}

/* Hero social icons - hidden on desktop, shown on mobile/tablet */
.hero-social-icons {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    order: 6;
}

.hero-social-icons .social-link img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

@media (max-width: 768px) {
    .hero-social-icons {
        display: flex;
    }

    .social-icons {
        display: none ;
        margin-left: 0.5rem;
    }
}


