/* ==================== Variables ==================== */
:root {
    /* Brand Colors */
    --primary-color: #CC6530;
    --secondary-color: #C65932;
    --accent-color: #72B7E0;

    /* Neutral Colors */
    --text-color: #171715;
    --text-light: #6b7280;
    --bg-color: #FFFFFF;
    --bg-light: #F3DFD6;
    --bg-gray: #ECECEC;
    --border-color: #e5e7eb;

    /* Utility Colors */
    --success-color: #10b981;
    --danger-color: #ef4444;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* ==================== Logo ==================== */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

/* ==================== Container ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== Header ==================== */
.top-bar-bg {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 70%, rgba(0, 0, 0, 0.15) 100%);
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 40px;
}

.top-bar-bg.hidden {
    max-height: 0;
    opacity: 0;
}

.top-bar {
    background-color: transparent;
    color: white;
    height: 40px;
    padding: 0;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.top-bar-list {
    display: flex;
    gap: 30px;
    padding: 0 2rem;
}

.top-bar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    line-height: 1;
}

.top-bar-list a {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.top-bar-list a:hover {
    opacity: 0.8;
}

.top-bar-list i {
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    padding-bottom: 2px;
}

.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: var(--bg-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Compensação de espaço quando navbar fica fixed */
body.navbar-scrolled {
    padding-top: 93px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo h1 {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    margin-right: auto;
    margin-left: 15rem;
}

.nav-menu a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

/* ==================== Main Content ==================== */
main {
    flex: 1;
}

main.page-enter {
    animation: pageEnter 0.6s ease-out;
}

@keyframes pageEnter {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Hamburger Menu ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ==================== Hero Carousel ==================== */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    animation: slideUpFadeIn 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: slideUpFadeIn 1s ease-out 0.2s both;
}

.hero-btn {
    animation: slideUpFadeIn 1s ease-out 0.4s both;
}

@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7));
}

.carousel-nav.prev {
    left: 2rem;
}

.carousel-nav.next {
    right: 2rem;
}

.carousel-nav i {
    font-size: 3rem;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ==================== Features Section ==================== */
.features-section {
    background-color: #F0F0F0;
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #d1d5db 20%, #d1d5db 80%, transparent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.feature-content p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== About Section ==================== */
.about-section {
    background-color: white;
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-text h2 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text .brands {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.about-text .brands strong {
    color: var(--primary-color);
    font-size: 1.6rem;
}

/* ==================== CTA Section ==================== */
.cta-section {
    position: relative;
    height: 406px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

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

.cta-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-content .location {
    font-weight: 600;
    color: var(--accent-color);
}

/* ==================== Garantia Section ==================== */
.garantia-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.garantia-box {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
}

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

.garantia-box h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.garantia-box p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.btn-garantia {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-garantia:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 101, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 101, 48, 0.5);
}

/* ==================== Brands Section ==================== */
.brands-section {
    background-color: white;
    padding: 7rem 0;
    overflow: hidden;
}

.brands-header {
    text-align: center;
    /* margin-bottom: 2rem; */
}

.brands-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.brands-header h2::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.brands-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #5a9fc7);
    border-radius: 2px;
}

.brands-carousel-wrapper {
    position: relative;
    width: 100%;
}

.brands-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item {
    flex-shrink: 0;
    width: 270px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 2rem 0;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Desktop: Grid estático */
@media (min-width: 1025px) {
    .brands-carousel {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .brand-item {
        width: 100%;
        height: 200px;
    }

    /* Esconde as marcas duplicadas (a partir da 6ª) no desktop */
    .brand-item:nth-child(n + 6) {
        display: none;
    }
}

/* Mobile: carrossel com autoplay */
@media (max-width: 1024px) {
    .brands-carousel-wrapper {
        overflow: hidden;
        user-select: none;
    }

    .brands-carousel {
        animation: scroll-brands 25s linear infinite;
        width: max-content;
        gap: 1.5rem;
        will-change: transform;
    }

    .brands-carousel:hover {
        animation-play-state: paused;
    }

    @keyframes scroll-brands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 3 - 1.5rem * 3));
        }
    }

    .brand-item {
        width: 200px;
        height: 220px;
    }

    .brands-header h2 {
        font-size: 2.6rem;
    }
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==================== Quem Somos Section ==================== */
.quem-somos-section {
    background-color: white;
    padding-top: 4rem;
    padding-bottom: 7rem;
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.quem-somos-text h3 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.quem-somos-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
    margin-bottom: 2rem;
}

.quem-somos-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.quem-somos-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.quem-somos-cta {
    text-align: center;
}

.quem-somos-cta p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-ligar {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 101, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-ligar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 101, 48, 0.5);
}

@media (max-width: 1024px) {
    .quem-somos-section {
        padding: 5rem 0;
    }

    .quem-somos-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quem-somos-text h3 {
        font-size: 2.8rem;
    }

    .quem-somos-text p {
        font-size: 1.5rem;
    }

    .quem-somos-cta p {
        font-size: 1.6rem;
    }

    .btn-ligar {
        padding: 1.3rem 3rem;
        font-size: 1.6rem;
    }
}

/* ==================== Contato Section ==================== */
.contato-section {
    background-color: white;
    padding: 6rem 0;
}

.contato-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.contato-intro h3 {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contato-intro p {
    font-size: 1.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.contato-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(204, 101, 48, 0.15);
    border-color: var(--primary-color);
}

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

.contato-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contato-card p {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contato-card .contact-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.btn-contato {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 101, 48, 0.4);
}

.horario-atendimento {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    color: white;
}

.horario-atendimento h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.horario-atendimento .horario-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.horario-atendimento p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.horario-atendimento .dias {
    font-weight: 700;
    font-size: 2rem;
}

@media (max-width: 1024px) {
    .contato-section {
        padding: 4rem 0;
    }

    .contato-intro h3 {
        font-size: 2.8rem;
    }

    .contato-intro p {
        font-size: 1.6rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .horario-atendimento {
        padding: 3rem 2rem;
    }

    .horario-atendimento h3 {
        font-size: 2.4rem;
    }

    .horario-atendimento p {
        font-size: 1.6rem;
    }
}

/* ==================== Services Section ==================== */
.services-section {
    background-color: white;
    padding: 3rem 0 6rem 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-intro h3 {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.services-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.services-carousel-wrapper::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.services-carousel-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.services-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.services-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding-bottom: 1rem;
}

.service-item {
    width: 200px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-item:hover .service-card {
    border-color: var(--primary-color);
    box-shadow: 0 6px 25px rgba(204, 101, 48, 0.2);
}

.service-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.service-item:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-info {
    padding: 1.5rem;
    text-align: center;
}

.service-info h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.carousel-controls {
    display: none;
}

/* Service Detail Page */
.service-detail-section {
    background-color: white;
    padding: 3rem 0 6rem 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-detail-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-detail-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
    margin-bottom: 3rem;
}

.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-voltar:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--bg-light);
}

@media (max-width: 1024px) {
    .services-section {
        padding: 4rem 0;
    }

    .services-intro {
        margin: 0 auto 3rem;
    }

    .services-intro h3 {
        font-size: 2.8rem;
    }

    .services-intro p {
        font-size: 1.6rem;
    }

    .service-item {
        width: 180px;
    }

    .service-image-wrapper {
        height: 130px;
    }

    .service-info {
        padding: 1.2rem;
    }

    .service-info h4 {
        font-size: 1.5rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-text h2 {
        font-size: 2.8rem;
    }

    .service-detail-text p {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-intro {
        margin: 0 auto 2rem;
        padding: 0 1rem;
    }

    .services-intro h3 {
        font-size: 2.4rem;
    }

    .services-intro p {
        font-size: 1.5rem;
    }

    .services-carousel-wrapper {
        padding: 1.5rem 0;
    }

    .services-carousel {
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .service-item {
        width: 150px;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-image-wrapper {
        height: 110px;
    }

    .service-image-wrapper img {
        padding: 0.8rem;
    }

    .service-info {
        padding: 1rem;
    }

    .service-info h4 {
        font-size: 1.4rem;
    }

    .service-detail-text h2 {
        font-size: 2.4rem;
    }

    .service-detail-text p {
        font-size: 1.4rem;
    }
}

/* ==================== Whatsapp button ==================== */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  z-index: 9999;

  /* animação de pulsar */
  animation: pulse 1.8s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wp-icon {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Keyframes da animação */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    transform: scale(1.07);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* ==================== Footer ==================== */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p,
.footer-section li {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #d1d5db;
}

.footer-slogan {
    font-style: italic;
    margin-top: 1rem;
    color: #9ca3af;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-section ul li i {
    color: var(--primary-color);
    font-size: 1.6rem;
    min-width: 20px;
}

.footer-section a {
    color: #d1d5db;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.3rem;
    color: #9ca3af;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    /* Top Bar - Apenas ícones centralizados */
    .top-bar-list {
        justify-content: center;
        width: 100%;
    }

    .top-bar-list a {
        font-size: 0;
    }

    .top-bar-list i {
        font-size: 2rem;
    }

    /* Logo menor no mobile */
    .logo-img {
        height: 50px;
        width: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 1.5rem 2rem;
        border-bottom: none;
    }

    /* Hero Carousel Mobile */
    .hero-carousel {
        height: 400px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .carousel-nav.prev {
        left: 1rem;
    }

    .carousel-nav.next {
        right: 1rem;
    }

    .carousel-nav i {
        font-size: 2.5rem;
    }

    .carousel-indicators {
        bottom: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    /* Navbar Fixed Mobile */
    body.navbar-scrolled {
        padding-top: 78px;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .feature-item {
        padding-bottom: 3rem;
        border-bottom: 1px solid #d1d5db;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* About Section Mobile */
    .about-section {
        padding: 5rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }

    .about-text p {
        font-size: 1.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        height: 500px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2.8rem;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }

    .cta-content p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .btn-cta {
        padding: 1.3rem 3rem;
        font-size: 1.6rem;
    }
}
