:root {
    --dark-gray: #3b3b3b;
    --grass-green: #8fbc8f;
    --light-beige: #e1e1e1;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--light-beige);
    color: var(--dark-gray);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

h2.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--grass-green);
    border-radius: 2px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    background: none;
    width: auto;
    height: auto;
}

.nav-links li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grass-green);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--grass-green);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Menu Mobile Ativo */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.video-background video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay escuro para melhorar a legibilidade do texto */
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    font-weight: 500;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
}

.services {
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card h3 {
    color: var(--dark-gray);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 1rem;
}

.about {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    color: var(--grass-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--grass-green);
    border-radius: 15px;
    z-index: -1;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: translate(10px, 10px);
}

.about-image:hover::before {
    top: 10px;
    left: 10px;
}

/* Separador elegante */
.section-divider {
    position: relative;
    text-align: center;
    margin: 4rem auto;
    max-width: 600px;
}

.section-divider::before {
    content: '✧';
    color: var(--grass-green);
    font-size: 1.5rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--grass-green),
            transparent);
    z-index: 0;
}

/* Galeria do espaço */
.space-section {
    max-width: 900px;
    margin: 0 auto;
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.space-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-gallery img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.results {
    padding: 5rem 0 0 0;
    background: var(--light-beige);
}

.results-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 80px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-slide {
    min-width: calc(25% - 15px);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--grass-green);
    color: var(--white);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.google-reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact {
    background: var(--light-beige);
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--grass-green);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--grass-green);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--grass-green);
    transform: translateY(-3px);
}

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

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--grass-green);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
}

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

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-container {
        gap: 2rem;
        overflow: hidden;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image::before {
        display: none;
    }

    .space-gallery {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .space-gallery img {
        height: 350px;
    }

    .carousel-slide {
        min-width: calc(100% - 20px);
    }
}

/* Estilização dos botões de serviço */
.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0 1.5rem 1.5rem;
    background: var(--grass-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--grass-green);
    box-shadow: 0 3px 10px rgba(143, 188, 143, 0.3);
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.5s ease;
}

.btn-service:hover {
    transform: translateY(-3px);
    background: transparent;
    color: var(--grass-green);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:active {
    transform: translateY(-1px);
}

/* Seção de Avaliações */
.reviews {
    padding: 5rem 0;
    background: var(--white);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-card {
    background: var(--light-beige);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    margin: 0;
    color: var(--dark-gray);
}

.review-stars {
    color: #ffd700;
    margin-top: 0.3rem;
}

.review-text {
    font-style: italic;
    margin: 1rem 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.review-source i {
    color: #4285f4;
}

/* Seção de Localização */
.location {
    padding: 5rem 0;
    background: var(--light-beige);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.business-hours {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover,
.business-hours:hover {
    transform: translateY(-5px);
}

.info-icon,
.hours-icon {
    width: 50px;
    height: 50px;
    background: var(--grass-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content,
.hours-content {
    flex-grow: 1;
}

.info-content h3,
.hours-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-content p,
.hours-content p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border: 2px solid var(--grass-green);
    border-radius: 30px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.location-btn i {
    font-size: 1.2rem;
    color: var(--grass-green);
    transition: color 0.3s ease;
}

.location-btn:hover {
    background: var(--grass-green);
    color: var(--white);
    transform: translateX(5px);
}

.location-btn:hover i {
    color: var(--white);
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--grass-green);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-container:hover::before {
    opacity: 1;
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .location-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .location-btn {
        min-width: 200px;
    }
}

@media (max-width: 576px) {

    .info-card,
    .business-hours {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Resultados Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem 2rem;
}

.result-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.result-item:hover .result-overlay {
    opacity: 1;
    transform: translateY(0);
}

.result-item:hover img {
    transform: scale(1.05);
}

/* Menu Mobile */
.nav-links.active {
    right: 0;
}

.nav-links li {
    margin: 1.5rem 0;
}

/* Media Queries */
@media (max-width: 1024px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0rem;
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        padding-top: 100px;
        text-align: center;
    }

    .nav-links li {
        margin: 0;
        padding: 1rem 0;
        width: 100%;
        position: relative;
    }

    .nav-links li::after {
        content: "";
        display: block;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--grass-green), transparent);
        margin: 5px auto 0;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 380px) {
    .results-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

body.no-scroll {
    overflow: hidden;
}