/*
 * Arquivo: style.css
 * Descrição: Estilos modernos e provocantes para a landing page.
 */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* Animação de entrada */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    min-height: 100vh; /* Altura mínima da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550005809-91325d742681?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    opacity: 0.15; /* Transparência da imagem de fundo */
    z-index: 0;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-section p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 900px;
    margin: 25px auto;
    color: #e0e0e0;
}

/* Botões Customizados */
.btn-custom {
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-width: 2px;
}
.btn-primary-custom {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    color: #fff;
}
.btn-primary-custom:hover {
    background: linear-gradient(90deg, #0056b3 0%, #007bff 100%);
    border-color: #0056b3;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}
.btn-outline-custom {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}
.btn-outline-custom:hover {
    background-color: #fff;
    color: #121212;
    border-color: #fff;
}

/* Seções Gerais */
.section-padding {
    padding: 100px 0;
}
.section-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 60px;
}
.logo-placeholder {
    height: 60px; /* Altura do logo */
    width: 200px; /* Largura do logo */
    background-color: #ffffff; /* Cor de fundo para o placeholder */
    border-radius: 8px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Seção de Contraste */
.section-contrast {
    background-color: #fff;
}
.image-overlay-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.image-overlay-card img {
    display: block;
    width: 100%;
    height: 400px; /* Altura fixa para as imagens */
    object-fit: cover; /* Garante que a imagem preencha o espaço */
    filter: brightness(0.7); /* Escurece um pouco a imagem */
}
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 20px;
    text-align: left;
}
.overlay-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
.overlay-text p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0;
}
.text-content {
    padding-left: 30px;
}
.text-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}
.text-content ul {
    list-style: none;
    padding: 0;
}
.text-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Cores de ícones */
.text-danger { color: #dc3545 !important; }
.text-success { color: #28a745 !important; }

/* Seção de Solução Estratégica */
.solution-strategic-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); /* Gradiente azul escuro */
    color: #fff;
}
.feature-box {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%; /* Garante a mesma altura para os boxes */
}
.feature-box:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}
.feature-box .icon-gradient {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Necessário para o gradient no ícone */
}
.feature-box h5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
}
.feature-box p {
    font-size: 1rem;
    color: #ccc;
}

/* Seção de Depoimentos */
.testimonial-section {
    background-color: #f1f3f5;
}
.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%; /* Garante a mesma altura para os cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-card small {
    display: block;
    margin-top: auto; /* Empurra o nome para baixo */
    font-weight: 600;
    color: #555;
}

/* Seção de Contato */
.contact-section {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: #fff;
}
.contact-section .form-control {
    border-radius: 50px;
    padding: 15px 25px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}
.contact-section .form-control::placeholder {
    color: #666;
}
.contact-section .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}
.contact-section .section-title {
    color: #fff;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    color: #fff;
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .text-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .flex-row-reverse .text-content {
        padding-right: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .btn-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .image-overlay-card img {
        height: 300px;
    }
    .overlay-text h3 {
        font-size: 1.5rem;
    }
    .feature-box {
        padding: 30px 15px;
    }
    .feature-box .icon-gradient {
        font-size: 2.8rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}