/* 
 * Techlog - CSS Personalizado
 * Este arquivo contém estilos personalizados para o site da Techlog
 */

/* Variáveis */
:root {
    /* Cores principais */
    /* --primary: #001f3f; */
    --primary: #0e76a8;
    --primary-dark: #0095cc;
    --secondary: #333333;
    --light: #f8f9fa;
    --dark: #212529;
    
    /* Cores de apoio */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Estilos Gerais */
body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-primary);
    font-weight: 600;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-bg {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* Utilitários */
.min-vh-80 {
    min-height: 80vh;
}

.py-md-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.text-primary-custom {
    color: var(--primary);
}

/* Botões */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--gray-700);
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: relative;
}

.hero-bg img {
    object-fit: cover;
    height: 80vh;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.hero-section .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

/* Benefícios Section */
.benefits-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.benefits-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Como Funciona Section */
.step-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
}

/* Estatísticas Section */
.stat-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Depoimentos Section */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid var(--gray-200);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer .social-icons a {
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

footer .social-icons a:hover {
    opacity: 0.8;
}

.compliance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.compliance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.hero-compliance {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
}

.protocol-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.coming-soon-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 186, 255, 0.25);
}
     

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-bg img {
        height: 60vh;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767.98px) {
    .hero-bg img {
        height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .py-md-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .testimonial-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 575.98px) {
    .hero-bg img {
        height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    .text-primary-dark {
    color: var(--primary-dark);
}
}

