/* ===== CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== CABEÇALHO ATUALIZADO ===== */
.header {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    font-size: 2.2rem;
    color: #25D366;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slogan-logo {
    color: #25D366 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Navegação */
.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #25D366;
}

.nav a.active {
    color: #25D366;
}

.btn-orcamento {
    background: #25D366;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-orcamento:hover {
    background: #128C7E;
}

/* Botão WhatsApp no cabeçalho */
.whatsapp-header .btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    font-size: 1rem;
}

.whatsapp-header .btn-whatsapp:hover {
    background: #128C7E;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: #1a1a1a;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h2 {
    font-size: 1.1rem;
    color: #25D366;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ccc;
}

/* Botões Hero */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-whatsapp-lg {
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-whatsapp-lg:hover {
    background: #128C7E;
    transform: translateY(-3px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Features Hero */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
}

.feature i {
    color: #25D366;
    font-size: 1.3rem;
    min-width: 30px;
}

.feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Imagem Hero */
.hero-image img {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 5px solid #25D366;
}

/* ===== SLOGAN IMPACTO ===== */
.slogan-impacto {
    background: #25D366;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.slogan-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slogan-sub {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.slogan-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.slogan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 50px;
}

.slogan-item i {
    color: #ffeb3b;
    font-size: 1.2rem;
}

.slogan-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servico-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid transparent;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-top: 5px solid #25D366;
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #25D366;
}

.servico-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.servico-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-saiba-mais {
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-saiba-mais:hover {
    gap: 10px;
    color: #128C7E;
}

/* ===== CAÇAMBAS ===== */
.cacambas {
    padding: 80px 0;
    background: #f8f9fa;
}

.cacambas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cacamba-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cacamba-card:hover {
    transform: translateY(-10px);
    border-color: #25D366;
}

.cacamba-img {
    height: 200px;
    overflow: hidden;
}

.cacamba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cacamba-card:hover .cacamba-img img {
    transform: scale(1.1);
}

.cacamba-info {
    padding: 25px;
}

.cacamba-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.cacamba-capacidade {
    color: #25D366;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cacamba-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cacamba-detalhes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cacamba-detalhes span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.cacamba-detalhes i {
    color: #25D366;
}

.cacamba-preco {
    margin-bottom: 20px;
}

.cacamba-preco .preco {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cacamba-preco .periodo {
    color: #666;
    font-size: 0.9rem;
}

.btn-alugar {
    background: #25D366;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn-alugar:hover {
    background: #128C7E;
    color: white;
}

/* ===== CTA WHATSAPP ===== */
.cta-whatsapp {
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    background: #128C7E;
    color: white;
}

.cta-info {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-info i {
    margin: 0 5px;
    color: #25D366;
}

/* ===== ÁREA DE ATUAÇÃO (SÃO PAULO) ===== */
.atuacao {
    padding: 80px 0;
    background: white;
}

.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.atuacao-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.atuacao-item:hover {
    transform: translateY(-5px);
}

.atuacao-item i {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 15px;
}

.atuacao-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.atuacao-item p {
    color: #666;
    font-size: 0.95rem;
}

.atuacao-cta {
    text-align: center;
    background: #25D366;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.atuacao-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-consulta {
    background: white;
    color: #25D366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-consulta:hover {
    background: #f1f1f1;
    color: #128C7E;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: #25D366;
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contato i {
    width: 20px;
    color: #25D366;
}

.footer-desc {
    color: #aaa;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.instagram:hover {
    background: #E4405F;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cnpj {
    color: #25D366;
    font-weight: 600;
}

.admin-link {
    color: #25D366;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.admin-link:hover {
    color: #128C7E;
}

/* ===== BOTÕES FLUTUANTES - CORRETO! ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float span {
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.phone-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: #1a1a1a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s;
    border: 2px solid #25D366;
}

.phone-float:hover {
    transform: scale(1.1);
    background: #333;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-features {
        justify-content: center;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        gap: 20px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .whatsapp-header {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .atuacao-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slogan-content h2 {
        font-size: 2rem;
    }
    
    .slogan-sub {
        font-size: 1.2rem;
    }
    
    .slogan-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .atuacao-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .phone-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp-lg, .btn-secondary {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .servico-card, .cacamba-card {
        padding: 30px 20px;
    }
    
    .cacamba-info {
        padding: 20px;
    }
}