/* Custom styles for Escritório Contábil Suko website */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Banner Section */
.banner {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/f.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
}

/* About Section */
#empresa {
    background-color: var(--light-color);
    padding: 80px 0;
}

.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-custom-line {
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

.divider-custom-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 1rem;
}

/* Estilos para a seção Quem Somos */
#empresa .card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#empresa .card-body {
    padding: 2rem;
}

#empresa h3 {
    position: relative;
    padding-bottom: 1rem;
}

#empresa h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

#empresa .feature-icon-small {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#empresa .h5 {
    margin-top: 1rem;
    font-weight: 600;
}

#empresa .text-muted {
    font-size: 0.9rem;
}

/* Services Section */
#servicos {
    background-color: var(--light-color);
    padding: 80px 0;
}

.service-card .card {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

/* Estratégia Section */
#estrategia {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/f.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    position: relative;
}

/* Links Section */
#links {
    background-color: var(--light-color);
    padding: 80px 0;
}

/* Contact Section */
#contato {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/f.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 80px 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Estilo para os cards da seção Links Úteis */
.hover-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.hover-card .card-body {
    position: relative;
    z-index: 1;
}

.hover-card .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Estilo para os ícones dos cards de links úteis */
.hover-card .fa-2x {
    color: var(--primary-color);
}

/* Estilo para as seções de links úteis */
#links .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

#links .section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

#links .h4 {
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    padding-right: 1rem;
}

.cookie-banner .btn-group {
    display: flex;
    gap: 0.5rem;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse-wrapper {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.wheel {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 2px;
}

/* Cards com sombra suave */
.card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Seção Serviços */
#servicos .card {
    border-radius: 1rem;
    overflow: hidden;
}

#servicos .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
    
    #home {
        height: auto;
        min-height: 80vh;
        padding: 100px 0;
    }
    
    #empresa, #servicos, #contato, #estrategia {
        background-attachment: scroll;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .scroll-down {
        display: none;
    }
}

/* Feature icons */
.feature-icon-small {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
} 