/* 
* Auto Mecânica Confiança - Estilos Principais
* Criado por: Cascade
* Data: 27/02/2025
*/

/*--------------------------------------------------------------
# Variáveis Globais
--------------------------------------------------------------*/
:root {
    --primary-color: #800000;        /* Bordô - da borda do escudo */
    --secondary-color: #002060;      /* Azul marinho - das letras JM */
    --tertiary-color: #555555;       /* Cinza mais escuro - substituindo o cinza claro */
    --light-color: #f8f9fa;          /* Cor clara para fundos */
    --dark-color: #212529;           /* Cor escura para textos */
    --white-color: #ffffff;          /* Branco para fundos e textos */
    --font-primary: 'Poppins', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #6b0000;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7f8f9;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 16px;
    color: var(--tertiary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #6b0000 !important;
    border-color: #6b0000 !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.btn-back-to-top:hover {
    background: #6b0000;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header.fixed-top {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header.fixed-top.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease-in-out;
}

header.fixed-top.scrolled .logo {
    max-height: 60px;
}

.navbar {
    padding: 0;
}

.navbar .logo {
    max-height: 70px;
    transition: all 0.3s;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 15px;
    transition: var(--transition);
}

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

.btn-call-now {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    padding: 8px 20px !important;
    border-radius: 30px;
}

.btn-call-now:hover {
    background-color: #6b0000;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

/* Botão de WhatsApp no cabeçalho */
.btn-whatsapp-header {
    background-color: #25D366;
    color: white !important;
    border-radius: 4px;
    padding: 8px 15px !important;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-header i {
    font-size: 16px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    padding: 0;
    background: linear-gradient(rgba(0, 32, 96, 0.7), rgba(128, 0, 0, 0.7)), url("../img/hero.jpg") center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

#hero .container {
    padding-top: 80px;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--white-color);
}

#hero p {
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 30px 0;
    font-size: 18px;
}

#hero .hero-img img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 400px;
    object-fit: cover;
    width: 100%;
}

#hero .hero-btns {
    margin-top: 30px;
}

/* Botão de WhatsApp na Hero Section */
.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    border-color: #25D366;
    transition: all 0.3s ease;
    border-radius: 30px; /* Mesmo arredondamento do botão primário */
    padding: 8px 25px;
}

.btn-whatsapp:hover, 
.btn-whatsapp:focus, 
.btn-whatsapp:active {
    background-color: #20ba5a;
    border-color: #20ba5a;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp i {
    font-size: 18px;
}

@media (max-width: 576px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btns .btn {
        margin: 0 !important;
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Serviços
--------------------------------------------------------------*/
.service-card {
    padding: 30px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Imagens dos serviços */
.service-img {
    border-radius: 8px;
    margin-top: 15px;
    height: 200px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.highlight-service .service-img {
    border: 2px solid var(--primary-color);
}

.service-card:hover .service-img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Serviços Destacados */
.highlight-service {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.15);
    transform: translateY(-5px);
}

.highlight-service .service-icon {
    background-color: var(--primary-color);
    color: white;
}

.highlight-service h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-service::before {
    content: "Serviço em Destaque";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-bottom-left-radius: 8px;
}

/*--------------------------------------------------------------
# Sobre
--------------------------------------------------------------*/
#sobre {
    padding: 60px 0;
}

#sobre .section-title {
    margin-bottom: 25px;
}

#sobre .about-img {
    margin-bottom: 30px;
}

#sobre .about-img img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    object-fit: cover;
    width: 100%;
}

#sobre .content p {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-features {
    margin-top: 30px;
}

.feature {
    margin-bottom: 20px;
}

.feature i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.feature p {
    color: var(--dark-color);
}

@media (max-width: 768px) {
    #sobre {
        padding: 40px 0;
    }
    
    #sobre .section-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    #sobre .about-img {
        margin-bottom: 25px;
    }
    
    #sobre .about-img img {
        max-height: 300px;
        object-fit: cover;
        object-position: top; /* Para evitar que corte as pessoas */
    }
}

/*--------------------------------------------------------------
# Missão, Visão e Valores
--------------------------------------------------------------*/
#missao-visao-valores {
    padding: 60px 0;
    background-color: #f7f8f9;
}

.mvv-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mvv-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(128, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.mvv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.mvv-card p {
    color: var(--dark-color);
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.values-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.values-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .mvv-card {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Localização
--------------------------------------------------------------*/
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 30px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    margin-bottom: 0;
    color: var(--dark-color);
}

.info-item a {
    color: var(--white-color);
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-info .info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info .info-item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 4px;
}

.contact-info .info-item div {
    margin-left: 15px;
}

.contact-info .info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info .info-item p {
    margin-bottom: 0;
}

.contact-info .info-item a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info .info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--secondary-color);
    padding: 60px 0 30px 0;
    color: var(--white-color);
}

.footer-top {
    padding: 60px 0 30px 0;
}

.footer-top h3 {
    font-size: 22px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-top p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
    position: relative;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul i {
    padding-right: 2px;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 1;
}

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 0;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
    line-height: 1;
}

.footer-links ul a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
    position: relative;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-social h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 77, 41, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #001845;
    padding: 20px 0;
    color: var(--white-color);
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .copyright strong {
    color: var(--white-color);
}

.footer-img {
    border-radius: 8px;
    max-height: 150px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.footer-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Responsivo
--------------------------------------------------------------*/
@media (max-width: 991px) {
    #hero {
        height: auto;
        padding: 120px 0 60px 0;
        text-align: center;
    }
    
    #hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    #hero p {
        font-size: 16px;
    }
    
    #hero .hero-img {
        margin-top: 40px;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btns .btn {
        margin: 0 !important;
        width: 80%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    header.fixed-top {
        padding: 10px 0;
    }
    
    .navbar .logo {
        max-height: 50px;
    }
    
    .btn-call-now {
        margin-top: 10px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    
    #hero {
        padding: 100px 0 50px 0;
    }
    
    #hero h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    #hero {
        padding: 80px 0 40px 0;
    }
    
    #hero h1 {
        font-size: 24px;
    }
    
    #hero p {
        font-size: 14px;
    }
    
    .hero-btns .btn {
        width: 100%;
        padding: 10px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-contact, .footer-links, .footer-social {
        margin-bottom: 30px;
    }
}

/* Estilos para o carrossel de serviços */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel-item {
    padding: 20px;
}

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

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Ajustes para o layout móvel do carrossel */
@media (max-width: 768px) {
    .carousel-inner .carousel-item .row {
        display: block;
    }
    
    .carousel-inner .carousel-item .col-md-4:not(:first-child) {
        display: none;
    }
    
    .service-card {
        max-width: 350px;
        margin: 0 auto 20px;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
}

/* Estilos para serviços individuais no carrossel */
@media (max-width: 768px) {
    #servicosCarousel .carousel-item {
        padding: 10px 40px;
    }
    
    .service-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .service-card img {
        max-height: 200px;
        object-fit: cover;
        border-radius: 0 0 8px 8px;
    }
}

/* Estilos para a seção de números */
.stats-section {
    background-color: #f8f9fa; /* Fundo claro em vez de azul */
    padding: 60px 0;
    color: #333; /* Texto escuro para melhor contraste */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color); /* Mantém a cor primária para os números */
}

.stat-title {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Botões de chamada para ação flutuantes */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-cta a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    transition: all 0.3s ease;
}

.floating-cta a:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

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

/*--------------------------------------------------------------
# Depoimentos
--------------------------------------------------------------*/
#depoimentos {
    padding: 60px 0;
    background-color: var(--white-color);
}

.testimonial-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
}

.quote-icon-left, .quote-icon-right {
    color: var(--primary-color);
    font-size: 18px;
    opacity: 0.5;
    margin: 0 8px;
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-content h4 {
    font-size: 14px;
    color: var(--tertiary-color);
    margin-bottom: 15px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    margin: 0 2px;
}

.testimonial-indicators {
    position: relative;
    margin-top: 30px;
    justify-content: center;
    margin-bottom: 0;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
    width: 14px;
    height: 14px;
}

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

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}
