/* MASTER CSS - PREÇOPLAY 2026 */
:root {
    --primary: #EE3135;
    --dark-bg: #1a1a1a;
    --dark-footer: #111;
    --white: #ffffff;
    --gray: #ccc;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* HEADER UNIVERSAL */
header.nav-header { 
    background-color: var(--dark-bg); 
    padding: 10px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    border-bottom: 3px solid var(--primary); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    height: 80px; 
}

.mobile-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--white); 
    font-size: 28px; 
    cursor: pointer; 
    transition: 0.3s;
}

.mobile-btn:hover { color: var(--primary); }

.logo-box { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    transition: 0.3s;
    padding: 15px 0;
}

.logo-img { 
    height: 40px; 
    width: auto; 
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

/* Efeito de Hover na Logo */
.logo-box:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 10px var(--primary));
}

.flag-icon {
    width: 22px;
    height: auto;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* MENU UNIVERSAL */
.main-menu { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.main-menu a { 
    color: var(--gray); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    position: relative; 
    padding: 5px 0; 
}

.main-menu a i { 
    margin-right: 8px; 
    color: var(--primary); 
    font-size: 10px; 
    opacity: 0.7;
}

.main-menu a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--primary); 
    transition: 0.3s; 
}

.main-menu a:hover::after, 
.main-menu a.active::after { 
    width: 100%; 
    box-shadow: 0 0 10px var(--primary); 
}

.main-menu a:hover { 
    color: var(--white); 
    transform: translateY(-2px); 
}

/* DROPDOWN MASTER */
.has-dropdown { position: relative; }
.dropdown-menu-list { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: var(--dark-bg); 
    min-width: 220px; 
    display: none; 
    flex-direction: column; 
    padding: 15px 0; 
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 3000;
}
.dropdown-menu-list a { 
    padding: 12px 20px !important; 
    width: 100%; 
    text-transform: none !important; 
    font-size: 13px !important;
    border-left: 3px solid transparent;
}
.dropdown-menu-list a:hover { 
    background: rgba(255,255,255,0.05); 
    border-left-color: var(--primary);
    padding-left: 25px !important;
}
.has-dropdown:hover .dropdown-menu-list { display: flex; }

/* HERO TOOL MASTER */
.hero-tool { 
    background-size: cover !important; 
    background-position: center !important; 
    color: #fff !important; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    min-height: 400px;
}
.hero-tool h1 { color: #fff !important; }
.hero-tool p { color: rgba(255,255,255,0.8) !important; }

/* GRID & CARDS MASTER */
.grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 25px; 
}
.item-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    gap: 15px;
}
.item-card i { 
    font-size: 32px; 
    color: var(--primary); 
    margin-bottom: 10px;
}
.item-card h3 { 
    font-family: 'Outfit'; 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--dark-bg);
}
.item-card p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6;
}
.item-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

/* RODAPÉ UNIVERSAL */
footer.footer-site { 
    background-color: var(--dark-footer); 
    color: #fff; 
    padding: 80px 10% 40px; 
    border-top: 5px solid var(--primary);
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 40px; 
    max-width: 1300px; 
    margin: 0 auto; 
}

.footer-col h4 {
    font-family: 'Outfit';
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* REDES SOCIAIS MASTER */
.social-footer {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-footer a {
    color: #fff;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-footer a:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    box-shadow: 0 10px 20px rgba(238, 49, 53, 0.3);
}

.social-menu {
    display: flex;
    gap: 15px;
    margin-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 15px;
}

.social-menu a {
    color: var(--gray);
    font-size: 16px;
    transition: 0.3s;
}

.social-menu a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom { 
    text-align: center; 
    margin-top: 60px; 
    padding-top: 30px; 
    border-top: 1px solid #222; 
    font-size: 13px; 
    color: #666; 
}

/* WHATSAPP FIXO */
.whatsapp-fixed { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background: #25d366; 
    width: 60px; 
    height: 60px; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 30px; 
    color: #fff; 
    z-index: 9999; 
    text-decoration: none; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.whatsapp-fixed:hover { transform: scale(1.1) rotate(10deg); }

/* RESPONSIVIDADE MASTER */
@media (max-width: 992px) {
    header.nav-header { padding: 0 5%; flex-direction: row; justify-content: space-between; gap: 0; }
    .mobile-btn { display: block; order: 2; }
    .logo-box { order: 1; }
    
    .main-menu { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background: var(--dark-bg); 
        flex-direction: column; 
        padding: 30px; 
        gap: 20px; 
        z-index: 1000; 
        border-bottom: 3px solid var(--primary);
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        transition: 0.3s;
    }
    
    .main-menu.show { display: flex; animation: slideDown 0.4s ease forwards; }
    .social-menu { border-left: none; padding-left: 0; margin-left: 0; margin-top: 15px; justify-content: center; }
    .logo-img { height: 50px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { margin-bottom: 20px; }
    .footer-links li { margin-bottom: 8px; }
    footer.footer-site { padding: 60px 10% 30px; }
    
    /* Resetando títulos gigantes */
    h1 { font-size: 32px !important; }
    h2 { font-size: 28px !important; }

    /* Ajustes específicos de ferramentas */
    .hero-tool { padding: 80px 5% !important; }
    .hero-tool h1 { font-size: 36px !important; }
    .hero-tool p { font-size: 18px !important; }
    .container { padding: 60px 5% !important; }
    .aggressive-text h2 { font-size: 30px !important; }
    .target-box { grid-template-columns: 1fr !important; padding: 30px !important; }
    .target-grid { grid-template-columns: 1fr !important; }
    
    .whatsapp-fixed { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .main-menu { gap: 10px; }
    .main-menu a { font-size: 9px; letter-spacing: 0.5px; }
    .logo-img { height: 45px; }
}
