/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #0F1A2D !important; /* FORÇANDO AZUL ESCURO NO HEADER */
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6); /* Aumentei a sombra para destacar */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribui os itens (logos e menu) no espaço */
    flex-wrap: wrap;
    gap: 20px; /* Adiciona um pequeno espaçamento entre os itens */
}

.logo-vivo {
    display: flex;
    align-items: center;
}

.vivo-logo {
    height: 40px;
}

.logo-empresa .mobile-logo {
    height: 50px;
}

.header-right {
    display: none; /* Oculta este div que está vazio no HTML */ 
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1; /* Permite que o menu ocupe o espaço restante */
    justify-content: center; /* Centraliza os itens do menu */
}

.menu-toggle {
    display: none; /* Escondido por padrão no desktop */
    color: white;
    cursor: pointer;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: #FFD700; /* Amarelo para o hover dos links do menu, para contraste */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700; /* Amarelo para o sublinhado de destaque */
    transition: width 0.3s ease;
}

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

.btn-fale-conosco {
    /* Mantido o gradiente original de vermelho/laranja para um destaque visual forte */
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-fale-conosco:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px; /* Ajuste para compensar o header fixo */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F1A2D; /* Cor de fallback até o slide carregar */
    overflow: hidden;
    z-index: -2;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Camada azul translúcida sobre a imagem de fundo (azul mais escuro) */
    /* Ajustei o gradiente para ser mais próximo do azul da sua logo */
    background: linear-gradient(45deg, rgba(15, 26, 45, 0.85), rgba(0, 51, 102, 0.7)); 
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-phone i {
    font-size: 2rem;
    color: #FFD700; /* Amarelo para o ícone de telefone */
}

.hero-phone span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.hero-image {
    position: relative; 
}


.hero-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-proposta {
    /* Mantido o gradiente original de vermelho/laranja para um destaque visual forte */
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    display: inline-block;
}

.btn-proposta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* Soluções Section */
.solucoes {
    padding: 100px 0;
    background: #f8f9fa; /* Fundo claro */
    position: relative;
}

.solucoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Grade de fundo em tom de azul claro */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23cce0ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #0056b3; /* Título em azul escuro */
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.section-title strong {
    /* Gradiente de azul para o texto forte no título */
    background: linear-gradient(45deg, #0056b3, #007BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solucao-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solucao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente azul sutil no hover do card */
    background: linear-gradient(135deg, #0056b3, #007BFF);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solucao-card:hover::before {
    opacity: 0.05;
}

.solucao-card:hover {
    transform: translateY(-10px);
    border-color: #0056b3; /* Borda azul no hover */
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.2); /* Sombra azul no hover */
}

.card-icon {
    width: 80px;
    height: 80px;
    /* Gradiente azul para os ícones dos cards */
    background: linear-gradient(135deg, #0056b3, #007BFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

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

.solucao-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.solucao-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px; /* Add margin to separate from the button */
}

.btn-saiba-mais {
    /* Gradiente azul para os botões "Saiba Mais" */
    background: linear-gradient(45deg, #0056b3, #007BFF);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto; /* Pushes the button to the bottom */
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3); /* Sombra azul no hover */
}

/* Sobre a Empresa */
.sobre-empresa {
    padding: 100px 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h2 {
    font-size: 2.5rem;
    color: #0056b3; /* Título em azul escuro */
    margin-bottom: 30px;
    font-weight: 800;
}

.sobre-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.sobre-text strong {
    color: #0056b3; /* Texto forte em azul escuro */
    font-weight: 700;
}

.sobre-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contato Section */
.contato {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.contato-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente de azul muito escuro para o fundo de contato */
    background: linear-gradient(135deg, #0A1426 0%, #0F1A2D 50%, #003366 100%);
    z-index: -2;
}

.contato-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente azul translúcido sobre o fundo de contato */
    background: linear-gradient(45deg, rgba(10, 20, 38, 0.9), rgba(0, 51, 102, 0.7));
    z-index: -1;
}

.contato-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #66CCFF; /* Título em azul claro para destaque */
    margin-bottom: 24px;
    text-shadow: 0 0 12px rgba(102, 204, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.contato-image {
    height: 100%;
    display: flex;
}

.contato-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.contato-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#mensagem {
    min-height: 150px;
    flex: 1;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66CCFF; /* Borda de foco em azul claro */
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(102, 204, 255, 0.3); /* Sombra de foco em azul claro */
}

.btn-solicitar {
    /* Mantido o gradiente original de vermelho/laranja para um destaque visual forte */
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-solicitar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a; /* Fundo escuro do footer */
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    /* Gradiente azul para os ícones sociais do footer */
    background: linear-gradient(135deg, #0056b3, #007BFF);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4); /* Sombra azul no hover */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 20px;
    color: #007BFF; /* Ícones de contato em azul */
    margin-top: 5px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366; /* Mantido verde padrão do WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .header-right {
        display: none; /* Oculta completamente o header-right */
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        display: none; 
    }

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

    .menu-toggle {
        display: block; 
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-phone span {
        font-size: 2rem;
    }

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

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .contato-form {
        padding: 25px;
    }
}
