/* 
=========================================
Nome do Projeto: Victor Dog Trainer - Despachante Veicular
Autor: [Seu Nome]
Versão: 1.0
=========================================
*/

/* ===== CORES PRINCIPAIS ===== */
:root {
    /* Cores principais */
    --primary-color: #e30613;         /* Vermelho */
    --secondary-color: #3a3a3a;       /* Cinza escuro */
    --accent-color: #f5a700;          /* Amarelo/Laranja */
    --dark-color: #222222;            /* Quase preto */
    --light-color: #f8f9fa;           /* Branco sujo */
    --text-color: #333333;            /* Texto principal */
    --light-text: #ffffff;            /* Texto claro */
    --light-gray: #f4f4f4;            /* Cinza claro */
    --border-color: #e1e1e1;          /* Cor de borda */
    --success-color: #28a745;         /* Verde sucesso */
    --warning-color: #ffc107;         /* Amarelo alerta */
    --danger-color: #dc3545;          /* Vermelho erro */
    --info-color: #17a2b8;            /* Azul info */
    --footer-bg: #222222;             /* Background footer */
    --overlay-dark: rgba(0, 0, 0, 0.7); /* Overlay escuro */
}

/* ===== RESET E ESTILO BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

p {
    margin-bottom: 20px;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
}

.heading-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
}

/* ===== BOTÕES ===== */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--light-color);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-color);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-outline-light:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25d366;
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(227, 6, 19, 0.2);
    border-top: 5px solid var(--primary-color);
    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: -100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 15px 0;
    z-index: 999;
    transition: all 0.5s ease;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

#cookie-accept {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-accept:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ===== CABEÇALHO/HEADER ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.logo-text {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 15px !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.whatsapp-button .nav-link {
    margin-left: 10px;
    padding: 10px 20px !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28227, 6, 19, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .whatsapp-button .nav-link {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}

/* ===== BANNER ===== */
.banner-section {
    position: relative;
    padding: 0;
    height: 600px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    color: var(--light-text);
    padding: 0 15px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .banner-section {
        height: 500px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .banner-section {
        height: 400px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
}

/* ===== SEÇÃO DE DESTAQUE ===== */
.highlight-section {
    background-color: var(--light-color);
    padding: 60px 0;
}

.highlight-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-card p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

/* ===== SEÇÃO SOBRE (RESUMO) ===== */
.about-summary-section {
    padding: 100px 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 20px 0;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ===== SEÇÃO DE SERVIÇOS (RESUMO) ===== */
.services-summary-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* ===== SEÇÃO DE DEPOIMENTOS ===== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-carousel {
    margin-top: 50px;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--secondary-color);
}

/* ===== SEÇÃO DE CONTATO RÁPIDO ===== */
.quick-contact-section {
    padding: 60px 0;
}

.quick-contact-container {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
}

.quick-contact-container h2 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 28px;
}

.quick-contact-container p {
    margin-bottom: 0;
}

/* ===== BANNER PROMOCIONAL ===== */
.promo-banner-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.promo-banner {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    color: var(--light-text);
    background-image: linear-gradient(to right, rgba(58, 58, 58, 0.9), rgba(58, 58, 58, 0.7)), url('/assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-banner h2 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 32px;
}

.promo-banner p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BANNER DE PÁGINA ===== */
.page-banner {
    background-color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--light-text);
    background-image: linear-gradient(to right, rgba(58, 58, 58, 0.8), rgba(58, 58, 58, 0.8)), url('/assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
}

.page-banner-content h1 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 36px;
}

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: var(--light-text);
}

.breadcrumb-item a {
    color: var(--light-text);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-text);
}

/* ===== SOBRE NÓS - PÁGINA COMPLETA ===== */
.about-section {
    padding: 100px 0;
}

.about-image-large img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.info-item h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item p {
    margin-bottom: 0;
}

/* ===== MISSÃO, VISÃO E VALORES ===== */
.mission-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.mission-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card p {
    margin-bottom: 0;
}

/* ===== POR QUE NOS ESCOLHER ===== */
.why-choose-section {
    padding: 100px 0;
}

.why-choose-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.choose-icon {
    min-width: 40px;
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
}

.choose-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.choose-text p {
    margin-bottom: 0;
}

/* ===== CONTADOR DE ESTATÍSTICAS ===== */
.stats-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--light-text);
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
}

/* ===== CTA - CALL TO ACTION ===== */
.cta-section {
    padding: 60px 0;
}

.cta-container {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 28px;
}

.cta-content p {
    margin-bottom: 0;
}

/* ===== SERVIÇOS - PÁGINA COMPLETA ===== */
.services-intro-section {
    padding-bottom: 40px;
}

.main-services-section {
    padding: 60px 0;
}

.service-block {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-block:hover .service-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-features {
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* ===== COMO FUNCIONA ===== */
.how-works-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.how-works-steps {
    margin-top: 50px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-item p {
    margin-bottom: 0;
}

/* ===== PERGUNTAS FREQUENTES ===== */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    background-color: #fff;
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(227, 6, 19, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e30613'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ===== DEPOIMENTOS - PÁGINA COMPLETA ===== */
.testimonials-intro-section {
    padding-bottom: 40px;
}

.testimonials-grid-section {
    padding: 60px 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #f5a700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.featured-testimonial-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.featured-testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-testimonial-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-testimonial-content {
    padding: 20px;
}

.testimonial-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.2;
}

.featured-testimonial-author {
    margin-top: 30px;
}

.featured-testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.featured-testimonial-author p {
    margin-bottom: 0;
    font-style: italic;
}

.video-testimonial-section {
    padding: 100px 0;
}

.video-placeholder {
    background-color: var(--light-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.video-message {
    text-align: center;
}

.video-message i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.google-reviews-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.google-rating {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.google-rating-stars {
    font-size: 30px;
    color: #f5a700;
    margin-bottom: 20px;
}

.rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 10px;
}

/* ===== CONTATO ===== */
.contact-section {
    padding: 100px 0;
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    min-width: 40px;
    font-size: 20px;
    color: var(--primary-color);
}

.contact-text h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-text p, .contact-text a {
    margin-bottom: 0;
    color: var(--secondary-color);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-control, .form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 16px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
}

textarea.form-control {
    height: auto;
}

.map-section {
    padding: 0;
}

.map-container {
    margin-top: 40px;
}

.channels-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.channel-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.channel-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.channel-card p {
    margin-bottom: 20px;
}

.quick-faq-section {
    padding: 100px 0;
}

.quick-contact-cta {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-contact-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quick-contact-cta p {
    margin-bottom: 20px;
}

/* ===== POLÍTICA DE PRIVACIDADE E TERMOS ===== */
.policy-section, .terms-section {
    padding: 100px 0;
}

.policy-container, .terms-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-date, .terms-date {
    margin-bottom: 30px;
    font-style: italic;
    color: var(--secondary-color);
}

.policy-content h2, .terms-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-content h3, .terms-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p, .terms-content p {
    margin-bottom: 15px;
}

.policy-content ul, .terms-content ul {
    margin-bottom: 30px;
}

.policy-content li, .terms-content li {
    margin-bottom: 10px;
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: var(--footer-bg);
    color: var(--light-text);
    position: relative;
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--light-text);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer .contact-item {
    color: rgba(255, 255, 255, 0.9);
}

.footer .contact-item i {
    color: var(--primary-color);
}

.footer .contact-text a {
    color: rgba(255, 255, 255, 0.9);
}

.footer .contact-text a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.copyright p span {
    margin-left: 10px;
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== ELEMENTOS FLUTUANTES ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .quick-contact-cta {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .featured-testimonial-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .policy-container, .terms-container {
        padding: 20px;
    }
    
    .footer-bottom-links {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
} 