/* =========================================
   CONFIGURAÇÕES GLOBAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body { 
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    line-height: 1.6; 
    color: #333; 
}

.container { 
    max-width: 1100px; 
    margin: auto; 
    padding: 0 20px; 
}

/* =========================================
   HEADER PRINCIPAL - CORRIGIDO
   ========================================= */
header {
    position: fixed;  /* MUDOU DE absolute PARA fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-bottom: 3px solid #e67e22;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
}

/* =========================================
   LOGO
   ========================================= */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e67e22;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    border-color: #e67e22;
    box-shadow: 0 8px 30px rgba(230,126,34,0.4);
}

/* =========================================
   MENU HAMBÚRGUER (ÍCONE)
   ========================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    border: 2px solid white;
    border-radius: 8px;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-toggle.active {
    border-color: #e67e22;
    background: rgba(0,0,0,0.5);
}

.menu-toggle.active span {
    background: #e67e22;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================================
   MENU LINKS (DESKTOP)
   ========================================= */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    border-radius: 50px;
    position: relative;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}

.nav-links li a:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.6);
    border-color: transparent;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 3px;
    background: #e67e22;
    transition: transform 0.3s ease;
    border-radius: 3px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links li a.active {
    background: #e67e22;
    color: white;
    border-color: transparent;
}

header.scrolled .nav-links li a {
    color: #333;
    background: white;
    border: 2px solid #e67e22;
}

header.scrolled .nav-links li a:hover {
    background: #e67e22;
    color: white;
    border-color: transparent;
}

/* =========================================
   MENU CELULAR - CORRIGIDO
   ========================================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
        padding: 40px 20px;
        gap: 15px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: white !important;
        font-size: 18px !important;
        padding: 14px 30px !important;
        width: 100%;
        text-align: center;
        border: 2px solid rgba(255,255,255,0.15) !important;
        background: rgba(255,255,255,0.05) !important;
    }

    .nav-links li a:hover {
        background: #e67e22 !important;
        border-color: transparent !important;
    }

    header.scrolled .nav-links li a {
        color: white !important;
        border-color: rgba(255,255,255,0.2) !important;
    }

    header.scrolled .nav-links li a:hover {
        background: #e67e22 !important;
        border-color: transparent !important;
    }
}

/* =========================================
   CARROSSEL - CORRIGIDO
   ========================================= */
.hero-carrossel {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.carrossel-container,
.carrossel-wrapper,
.carrossel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carrossel-wrapper {
    overflow: hidden;
}

.carrossel-slides {
    display: flex;
    transition: transform 0.5s ease-out;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    flex-shrink: 0;
    background-color: #000;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 0;
}

.slide-img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    margin: 0 auto;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.slide-content {
    color: white;
    max-width: 600px;
    padding: 40px;
    z-index: 3;
    position: relative;
    margin-right: 10%;
    margin-left: auto;
    text-align: right;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-content .btn-whatsapp {
    margin-left: auto;
    margin-right: 0;
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.slide-content .btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.carrossel-indicadores {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicador {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicador.active {
    background: #e67e22;
    transform: scale(1.2);
    border-color: white;
}

/* =========================================
   CARROSSEL CELULAR - CORRIGIDO
   ========================================= */
@media (max-width: 768px) {
    .hero-carrossel {
        height: 60vh !important;
        min-height: 400px !important;
    }

    .slide-content {
        position: absolute !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        max-width: 90% !important;
        padding: 15px 20px !important;
        background: rgba(0,0,0,0.4) !important;
        border-radius: 20px !important;
        backdrop-filter: blur(5px) !important;
        margin: 0 !important;
    }

    .slide-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }

    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .slide-content .btn-whatsapp {
        padding: 12px 25px !important;
        font-size: 15px !important;
        margin: 0 auto !important;
    }

    .carrossel-indicadores {
        bottom: 15px !important;
    }

    .slide::before {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%) !important;
    }
}

@media (max-width: 480px) {
    .hero-carrossel {
        height: 55vh !important;
        min-height: 350px !important;
    }

    .slide-content h1 {
        font-size: 1.5rem !important;
    }

    .slide-content p {
        font-size: 0.9rem !important;
    }

    .slide-content .btn-whatsapp {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

/* =========================================
   LINHA DIVISÓRIA
   ========================================= */
.linha-divisoria {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #e67e22 0%, #f39c12 30%, #e67e22 70%, #f39c12 100%);
    background-size: 200% 100%;
    animation: moveLinha 3s linear infinite;
    box-shadow: 0 4px 15px rgba(230,126,34,0.5);
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 5;
}

@keyframes moveLinha {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* =========================================
   SERVIÇOS
   ========================================= */
.section-title {
    text-align: center;
    margin: 50px auto 60px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e67e22;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(230,126,34,0.3);
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(230,126,34,0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230,126,34,0.15);
    border-color: #e67e22;
}

.card i { 
    font-size: 50px; 
    color: #e67e22; 
    margin-bottom: 20px;
}

/* =========================================
   SERVIÇOS DETALHADOS
   ========================================= */
.servicos-detalhados {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.servico-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.servico-item:hover {
    transform: translateY(-5px);
    border-color: #e67e22;
    box-shadow: 0 5px 20px rgba(230,126,34,0.3);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servico-icon i {
    font-size: 28px;
    color: white;
}

/* =========================================
   MARCAS PARCEIRAS
   ========================================= */
.marcas-parceiras {
    padding: 80px 0;
    background: white;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.marca-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 80px;
}

.marca-item img {
    max-width: 90%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.marca-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230,126,34,0.3);
    border-color: #e67e22;
}

.marca-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.marca-destaque {
    border: 3px solid #e67e22;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(230,126,34,0.3);
}

.marca-destaque::after {
    content: '★ Cliente';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e67e22;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.marca-destaque img {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    max-height: 60px;
}

/* =========================================
   MARCAS - RESPONSIVO
   ========================================= */
@media (max-width: 768px) {
    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .marca-destaque {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .marcas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .marca-item {
        height: 70px;
    }
}

/* =========================================
   MARCAS CTA
   ========================================= */
.marcas-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230,126,34,0.2);
}

.marcas-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,126,34,0.03) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.marcas-cta p {
    font-size: 2rem !important;
    color: #333 !important;
    margin-bottom: 30px !important;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.marcas-cta p strong {
    color: #e67e22;
    position: relative;
    display: inline-block;
}

.marcas-cta .btn-whatsapp {
    background: linear-gradient(135deg, #e67e22, #f39c12) !important;
    color: white !important;
    padding: 20px 50px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    border-radius: 60px !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(230,126,34,0.3) !important;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulseBotao 2s infinite;
}

@keyframes pulseBotao {
    0% { transform: scale(1); box-shadow: 0 15px 30px rgba(230,126,34,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 25px 40px rgba(230,126,34,0.5); }
    100% { transform: scale(1); box-shadow: 0 15px 30px rgba(230,126,34,0.3); }
}

.marcas-cta .btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 25px 40px rgba(230,126,34,0.5) !important;
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
}

@media (max-width: 768px) {
    .marcas-cta {
        padding: 30px 20px;
    }
    
    .marcas-cta p {
        font-size: 1.5rem !important;
    }
    
    .marcas-cta .btn-whatsapp {
        padding: 15px 35px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .marcas-cta p {
        font-size: 1.2rem !important;
    }
    
    .marcas-cta .btn-whatsapp {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
}

/* =========================================
   ORÇAMENTO
   ========================================= */
.orcamento-simples {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 0;
    border-top: 3px solid #e67e22;
    border-bottom: 3px solid #e67e22;
    position: relative;
    overflow: hidden;
}

.orcamento-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.orcamento-cta p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.form-simples {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.form-simples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.form-simples input,
.form-simples select {
    width: 100%;
    padding: 18px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    height: 60px;
    box-sizing: border-box;
    background-color: white;
    transition: all 0.3s ease;
}

.form-simples input:focus,
.form-simples select:focus {
    border-color: #e67e22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
}

.form-simples select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e67e22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    appearance: none;
    cursor: pointer;
}

.form-simples .btn-whatsapp {
    height: 60px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: bold;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 140px;
}

.form-simples .btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.02);
}

.orcamento-link {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #ddd;
    text-align: center;
}

.orcamento-link p {
    font-size: 18px;
    color: #555;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.link-detalhado {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(230,126,34,0.1);
    border-radius: 50px;
    border: 2px solid #e67e22;
}

.link-detalhado:hover {
    background: #e67e22;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(230,126,34,0.3);
}

/* =========================================
   ORÇAMENTO - RESPONSIVO
   ========================================= */
@media (max-width: 968px) {
    .form-simples-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-simples .btn-whatsapp {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .orcamento-simples {
        padding: 50px 0;
    }
    
    .orcamento-cta p {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .form-simples {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .form-simples-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-simples .btn-whatsapp {
        grid-column: span 1;
        height: 55px;
    }
    
    .form-simples input,
    .form-simples select {
        height: 55px;
    }
    
    .orcamento-link p {
        font-size: 16px;
        flex-direction: column;
        gap: 10px;
    }
    
    .link-detalhado {
        font-size: 18px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .orcamento-cta p {
        font-size: 15px;
    }
    
    .form-simples {
        padding: 20px 15px;
    }
    
    .form-simples input,
    .form-simples select,
    .form-simples .btn-whatsapp {
        height: 50px;
        font-size: 14px;
    }
    
    .link-detalhado {
        font-size: 16px;
        padding: 6px 16px;
    }
}

/* =========================================
   BOTÃO SOBRE
   ========================================= */
.botao-sobre-container {
    text-align: center;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.botao-sobre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(230,126,34,0.4);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(230,126,34,0.4); }
    50% { box-shadow: 0 5px 30px rgba(230,126,34,0.8); transform: scale(1.02); }
}

.botao-sobre:hover {
    background: white;
    color: #e67e22;
    border: 2px solid #e67e22;
    animation: none;
}

/* =========================================
   RODAPÉ
   ========================================= */
.main-footer {
    background: #0e0d0d;
    padding: 70px 0 20px;
    color: #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #e67e22;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #e67e22;
    padding-left: 5px;
}

.logo-img-footer {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e67e22;
    margin-bottom: 15px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.info-endereco h3,
.info-mapa h3 {
    color: #e67e22 !important;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(230,126,34,0.3);
    padding-bottom: 10px;
}

.info-endereco h3 i,
.info-mapa h3 i {
    color: #e67e22;
    font-size: 24px;
}

.mapa-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
}

.mapa-container iframe {
    width: 100%;
    height: 300px;
    display: block;
}

.btn-mapa {
    background: #4285F4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-mapa:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(66,133,244,0.4);
}

/* =========================================
   RODAPÉ - RESPONSIVO
   ========================================= */
@media (max-width: 968px) {
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .info-mapa {
        order: -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 15px !important;
    }
    
    .footer-col.brand {
        grid-column: span 3 !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .logo-img-footer {
        height: 80px !important;
        width: 80px !important;
        margin: 0 auto 10px !important;
    }
    
    .footer-col.brand p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .footer-col h3 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }
    
    .footer-col ul li a {
        font-size: 13px !important;
    }
    
    .footer-info {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 20px 0 !important;
    }
    
    .info-endereco {
        text-align: left !important;
    }
    
    .info-endereco h3 {
        justify-content: flex-start !important;
    }
    
    .info-mapa h3 {
        justify-content: center !important;
        font-size: 18px !important;
    }
    
    .mapa-container iframe {
        height: 200px !important;
    }
    
    .btn-mapa {
        display: block !important;
        width: fit-content !important;
        margin: 10px auto 0 !important;
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
    }
    
    .footer-col.brand {
        grid-column: span 2 !important;
    }
    
    .footer-col h3 {
        font-size: 13px !important;
    }
    
    .footer-col ul li a {
        font-size: 12px !important;
    }
    
    .info-endereco p {
        font-size: 13px !important;
    }
}

/* =========================================
   RODAPÉ INFERIOR
   ========================================= */
.footer-bottom {
    border-top: 2px solid #333;
    padding: 30px 0;
    margin-top: 30px;
    background: #0a0a0a;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright p {
    font-size: 14px;
    color: #aaa;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: #e67e22;
    font-size: 26px;
    transition: 0.3s;
}

.socials a:hover {
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .socials a {
        font-size: 22px;
    }
}

/* =========================================
   BOTÕES PADRÃO
   ========================================= */
.btn-whatsapp,
.marcas-cta .btn-whatsapp,
.orcamento-simples .btn-whatsapp,
.slide-content .btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp::before,
.marcas-cta .btn-whatsapp::before,
.orcamento-simples .btn-whatsapp::before,
.slide-content .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-whatsapp:hover::before,
.marcas-cta .btn-whatsapp:hover::before,
.orcamento-simples .btn-whatsapp:hover::before,
.slide-content .btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover,
.marcas-cta .btn-whatsapp:hover,
.orcamento-simples .btn-whatsapp:hover,
.slide-content .btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #128c7e !important;
}

/* =========================================
   WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        transform: scale(1);
    }
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    border-color: white;
    animation: none;
}

.whatsapp-float i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(10deg) scale(1.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .whatsapp-float span {
        display: none !important;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* =========================================
   RESPONSIVIDADE GERAL - CORREÇÕES FINAIS
   ========================================= */
@media (max-width: 1024px) {
    .slide-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    
    .section-title {
        font-size: 2rem;
        white-space: normal;
        width: 90%;
    }
    
    .grid-servicos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .servico-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: -20px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 55px;
        width: 55px;
    }
    
    .menu-toggle {
        width: 30px;
        height: 24px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .card i {
        font-size: 40px;
    }
    
    .servico-item {
        padding: 20px;
    }
    
    .botao-sobre {
        padding: 12px 25px;
        font-size: 14px;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .logo-img {
        height: 45px;
        width: 45px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}