﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: white;
    color: black;
    padding: 1rem;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1,
.logo h2 {
    margin: 0;
    font-size: 1.5rem;
}

nav {
    margin-top: 0.5rem;
}

nav a {
    color: black;
    margin: 0 1rem;
    text-decoration: none;
}

.hero {
    background-color: #FFF5EE;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: left;
    padding: 0 2rem;
    max-width: none;
    margin: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 460px;
    min-width: 280px;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    max-width: 420px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.hero h1 {
    font-size: 4.5rem;
    margin: 0;
}

.hero .hero-highlight {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffe600, #ff7b00, #ff9ad5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.hero a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-top: 1rem;
    background-color: #70c353;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

section {
    padding: 2rem;
    max-width: none;
    margin: 0;
}

#about {
    text-align: left;
    background-color: white;
    padding: 4rem 2rem;
    min-height: 300px;
}

#about h2 {
    color: #fd7a82;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-left {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    padding-left: 1rem;
}

.about-left img {
    max-width: 100%;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.about-right {
    flex: 2 1 450px;
}

.about-right h3 {
    font-size: 2.5rem;
    margin-top: 0;
    color: black;
}

.about-right p {
    font-size: 1.25rem;
    color: rgb(39, 39, 39);
    line-height: 1.7;
    margin-bottom: 1rem;
}

#services {
    background-color: #fff5ee;
}

#services h2 {
    text-align: center;
    color: #fe8c54;
}

.btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 50px;
    margin: 30px auto;
    background: #70c353;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

#contact {
    background-color: #fff5ee;
    padding: 4rem 2rem 2rem;
}

.contact-location .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.contact-location h2 {
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2b2b2b;
    letter-spacing: -0.03em;
}

.contact-location-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-card,
.map-card {
    flex: 1 1 460px;
    min-width: 280px;
}

.contact-card {
    background-color: white;
    border-radius: 32px;
    padding: 2.2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    background-color: white;
    border-radius: 24px;
    padding: 1.4rem;
}

.info-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.35rem;
    color: white;
    background-color: #fea733;
    flex-shrink: 0;
}

.info-title {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-text {
    margin: 0;
    color: #2b2b2b;
    font-size: 1rem;
    line-height: 1.6;
}

.info-text + .info-text {
    margin-top: 0.35rem;
}

.info-text-green {
    color: #70c353;
    font-weight: 600;
}

.info-text-red {
    color: #c43c3c;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.5rem 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.btn-whatsapp {
    background-color: #70c353;
    color: white;
    border: 1px solid transparent;
}

.btn-map {
    background-color: white;
    color: #70c353;
    border: 0.5px solid #70c353;
    height: 34px;
    padding: 0 0.8rem;
    font-size: 0.85rem;
}

.map-card {
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    flex: 1 1 300px;
    max-width: 500px;
    text-align: center;
}

.service h3 {
    color: #6fc452;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

#reviews {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.reviews {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.review {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review p {
    margin: 10px 0;
}

.reviews-button {
    margin-top: 30px;
}

.reviews-button a {
    background-color: #6fc452;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.reviews-button a:hover {
    opacity: 0.9;
}

/* ===== CARROSSEL DE SERVIÇOS ===== */

.services-carousel-section {
    background: #fff5ee;
    padding: 80px 30px;
}

.services-carousel-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fe8c54;
    font-size: 2.5rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: auto;
}

.services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 380px;
    height: 580px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
}

.service-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.service-tag {
    display: inline-block;
    background: #6fc452;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-content p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
}

.service-content a:hover {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
}

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

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

/* ===== DEPOIMENTOS EM VIDEO ===== */

.video-testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.video-card {
    width: 340px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.video-container {
    width: 100%;
    background: black;
}

.video-container video {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.video-info {
    padding: 22px;
}

.video-stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #222;
}

.video-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 768px) {

    .video-card {
        width: 100%;
        max-width: 340px;
    }

    .video-container video {
        height: 540px;
    }

}

@media (max-width: 768px) {

    .service-card {
        min-width: 85%;
        height: 500px;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }

    .carousel-btn {
        display: none;
    }

}
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-right h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    nav a {
        display: inline-block;
        margin: 0 0.75rem 0.5rem 0;
    }

    section {
        padding: 1.5rem 1rem;
    }

    #about {
        padding: 2.5rem 1rem;
    }

    .about-left {
        padding-left: 0;
    }

    .about-right h3 {
        font-size: 2rem;
    }

    .contact-location-grid {
        flex-direction: column;
    }

    .map-card {
        min-height: 380px;
    }

    .services {
        justify-content: center;
    }

    .service {
        width: 100%;
        max-width: 100%;
        margin: 0.75rem 0;
    }

    .reviews {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
}
