/*
* Vieira Servicos Domesticos LTDA - Landing Page
* Estilos principais
*/

/* ========== Estilos Gerais ========== */
:root {
    --transition: all 0.3s ease;
    --font-principal: 'Montserrat', sans-serif;
    --font-secundaria: 'Open Sans', sans-serif;
    --shadow-padrao: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secundaria);
    color: #333;
    line-height: 1.6;
    background-color: var(--cor-fundo);
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-principal);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

a {
    color: var(--cor-secundaria);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cor-destaque);
}

.section-title {
    margin-bottom: 2rem;
}

.section-title .subtitle {
    color: var(--cor-destaque);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--cor-destaque);
}

/* ========== Botões ========== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primario {
    background-color: var(--cor-primaria);
    color: #fff;
    border: 2px solid var(--cor-primaria);
}

.btn-primario:hover {
    background-color: transparent;
    color: var(--cor-primaria);
}

.btn-secundario {
    background-color: var(--cor-secundaria);
    color: #fff;
    border: 2px solid var(--cor-secundaria);
}

.btn-secundario:hover {
    background-color: transparent;
    color: var(--cor-secundaria);
}

.btn-destaque {
    background-color: var(--cor-destaque);
    color: #fff;
    border: 2px solid var(--cor-destaque);
}

.btn-destaque:hover {
    background-color: transparent;
    color: var(--cor-destaque);
}

.btn-outline-primario {
    background-color: transparent;
    color: var(--cor-primaria);
    border: 2px solid var(--cor-primaria);
}

.btn-outline-primario:hover {
    background-color: var(--cor-primaria);
    color: #fff;
}

.btn-outline-secundario {
    background-color: transparent;
    color: var(--cor-secundaria);
    border: 2px solid var(--cor-secundaria);
}

.btn-outline-secundario:hover {
    background-color: var(--cor-secundaria);
    color: #fff;
}

/* ========== Preloader ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== Aviso de Cookies ========== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cookie-notice p {
    margin-bottom: 0;
}

.cookie-notice a {
    color: var(--cor-destaque);
    text-decoration: underline;
}

/* ========== Header ========== */
.header-area {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-family: var(--font-principal);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cor-primaria);
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--cor-destaque);
}

.navbar-light .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--cor-destaque);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link.active:after {
    width: 70%;
}

.header-contact {
    color: var(--cor-primaria);
    font-weight: 500;
}

/* ========== Hero Banner ========== */
.hero-section {
    background-image: url('../images/banner.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ========== Sobre Nós ========== */
.sobre-section {
    padding: 80px 0;
}

.sobre-imagem img {
    width: 100%;
    height: auto;
}

.sobre-conteudo p {
    margin-bottom: 1.5rem;
}

.sobre-item {
    margin-bottom: 1.5rem;
}

.sobre-item .icon {
    color: var(--cor-destaque);
    font-size: 1.5rem;
}

.sobre-item h5 {
    margin-bottom: 0.5rem;
}

.numeros-item {
    padding: 30px 15px;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: var(--shadow-padrao);
    transition: var(--transition);
}

.numeros-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.numeros-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-destaque);
    margin-bottom: 0.5rem;
}

/* ========== Serviços ========== */
.servicos-section {
    padding: 80px 0;
}

.servico-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-padrao);
    transition: var(--transition);
    margin-bottom: 30px;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.servico-icon {
    font-size: 2.5rem;
    color: var(--cor-destaque);
    margin-bottom: 1.5rem;
}

.servico-conteudo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.servico-lista {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.servico-lista li {
    margin-bottom: 0.5rem;
}

.servico-lista li i {
    color: var(--cor-destaque);
}

.btn-saiba-mais {
    display: inline-block;
    font-weight: 500;
    color: var(--cor-secundaria);
    margin-top: 1rem;
}

.btn-saiba-mais:hover {
    color: var(--cor-destaque);
}

.promo-banner {
    background-color: var(--cor-primaria);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-padrao);
}

.promo-banner h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ========== Depoimentos ========== */
.depoimentos-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.depoimentos-slider {
    overflow: visible;
    padding-bottom: 70px;
    width: 100%;
}

.depoimento-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-padrao);
    margin: 10px;
    height: 100%;
    transition: transform 0.3s;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.depoimento-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.depoimento-texto {
    margin-bottom: 1.5rem;
}

.depoimento-texto p {
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-info h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.depoimento-info span {
    font-size: 0.9rem;
    color: #777;
}

/* Estilos de navegação do Swiper */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--cor-destaque) !important;
    width: 14px;
    height: 14px;
}

.swiper-button-next, 
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--cor-primaria);
    color: #fff !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 1.2rem !important;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background-color: var(--cor-destaque);
}

.depoimentos-cta {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-padrao);
    margin-top: 20px;
}

/* ========== Contato ========== */
.contato-section {
    padding: 80px 0;
}

.contato-info {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-padrao);
}

.contato-info h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contato-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contato-item .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contato-item h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contato-social h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--cor-destaque);
    color: #fff;
}

.contato-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-padrao);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    height: 50px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    padding: 0.375rem 0.75rem;
}

.form-control:focus {
    border-color: var(--cor-secundaria);
    box-shadow: 0 0 0 0.2rem rgba(var(--cor-secundaria-rgb), 0.25);
}

textarea.form-control {
    height: auto;
}

/* ========== Footer ========== */
.footer-area {
    background-color: #333;
    color: #fff;
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--cor-destaque);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--cor-destaque);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--cor-destaque);
    padding-left: 5px;
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.footer-hours li span {
    font-weight: 600;
    color: var(--cor-destaque);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.copyright-text, .cnpj-text {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

/* ========== Páginas de Política e Termos ========== */
.politica-section, .termos-section {
    padding: 80px 0;
}

.politica-conteudo, .termos-conteudo {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-padrao);
}

.politica-conteudo h1, .termos-conteudo h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.data-atualizacao {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.politica-secao, .termos-secao {
    margin-bottom: 2rem;
}

.politica-secao h2, .termos-secao h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--cor-primaria);
}

/* ========== Responsividade ========== */
@media (max-width: 991.98px) {
    .header-area {
        padding: 10px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .sobre-imagem {
        margin-bottom: 2rem;
    }
    
    .numeros-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .promo-banner {
        text-align: center;
    }
    
    .contato-mapa {
        margin-top: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .copyright-text, .cnpj-text {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .servico-card, .depoimento-card, .contato-form, .contato-info {
        padding: 20px;
    }
    
    .servico-icon {
        font-size: 2rem;
    }
}

/* ========== Animações ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
} 