/* Variáveis de Cores - Paleta Verde */
:root {
    /* Paleta de Verde - Do mais escuro ao mais claro */
    --green-dark: #0a4d3c;           /* Verde Escuro - Headers, navegação */
    --green-medium-dark: #1a6b5a;   /* Verde Médio-Escuro - Transição */
    --green-medium: #2d8f7a;        /* Verde Médio - Elementos principais */
    --green-medium-light: #4db3a0;  /* Verde Médio-Claro - Botões, CTAs */
    --green-light: #7dd3c0;          /* Verde Claro - Backgrounds secundários */
    --green-mint: #c5e6dc;          /* Verde Menta - Backgrounds sutis */
    
    /* Cores de texto para contraste */
    --text-dark: #1a2332;
    --text-light: #fff;
    --text-muted: #666;
    --text-muted-light: #9ca3af;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 6rem;
    }
}

/* Tipografia */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title-white {
    color: #fff;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--green-medium);
    margin: 1rem auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 77, 60, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .navbar-container {
        padding: 1rem 3rem;
    }
}

@media (min-width: 1024px) {
    .navbar-container {
        padding: 1rem 6rem;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.navbar-logo-img {
    height: 2.5rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: none;
}

.navbar-logo-img.loaded {
    display: block;
}

.navbar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    display: block;
}

@media (min-width: 768px) {
    .navbar-logo {
        font-size: 1.875rem;
    }
    
    .navbar-logo-img {
        height: 3rem;
    }
}

.navbar-logo:hover,
.navbar-brand:hover .navbar-logo {
    color: var(--green-medium-light);
}

.navbar-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.menu-icon {
    display: block;
    width: 28px;
    height: 28px;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: 8px;
}

.menu-icon::after {
    bottom: 8px;
}

.menu-icon.active::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-menu {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2rem;
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--green-dark);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1.5rem;
}

.navbar-menu li button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.navbar-menu li button:hover {
    color: var(--green-medium-light);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-button {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--green-medium-light);
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.hero-button:hover {
    background-color: var(--green-medium);
    transform: scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* About */
.about {
    padding: 5rem 0;
    background-color: var(--green-mint);
}

@media (min-width: 768px) {
    .about {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 768px) {
    .about-content {
        order: 1;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.75;
}

.about-text p strong {
    font-weight: 600;
}

.about-highlight {
    color: var(--green-medium-dark);
    font-weight: 600;
}

.about-image {
    order: 1;
}

@media (min-width: 768px) {
    .about-image {
        order: 2;
    }
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .about-image img {
        height: 600px;
    }
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--text-light);
}

@media (min-width: 768px) {
    .services {
        padding: 8rem 0;
    }
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--green-mint);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--green-medium);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-medium);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--green-medium);
}

.service-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--green-medium);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon .icon {
    color: var(--text-light);
}

.service-title {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.75;
}

/* Process */
.process {
    padding: 5rem 0;
    background-color: var(--green-light);
}

@media (min-width: 768px) {
    .process {
        padding: 8rem 0;
    }
}

.process-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    background-color: var(--text-light);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.process-number {
    color: var(--green-medium-dark);
    font-size: 3.75rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.process-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green-medium-dark);
    border-radius: 50%;
}

.process-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-light);
}

.process-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--text-muted);
    line-height: 1.75;
}

/* Differentials */
.differentials {
    padding: 5rem 0;
    background-color: var(--green-dark);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .differentials {
        padding: 8rem 0;
    }
}

.differentials-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
}

.differentials .container {
    position: relative;
    z-index: 10;
}

.differentials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.differential-card {
    text-align: center;
}

.differential-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-medium-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.differential-card:hover .differential-icon {
    background-color: var(--green-medium-light);
}

.differential-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--green-medium-light);
    transition: color 0.3s ease;
}

.differential-card:hover .differential-icon .icon {
    color: var(--green-dark);
}

.differential-title {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.75rem;
}

.differential-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background-color: var(--text-light);
}

@media (min-width: 768px) {
    .gallery {
        padding: 8rem 0;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: #fff;
}

.gallery-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--green-mint);
}

@media (min-width: 768px) {
    .testimonials {
        padding: 8rem 0;
    }
}

.testimonials-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-container {
        padding: 0 3rem;
    }
}

.testimonial-card {
    background-color: var(--text-light);
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
        text-align: left;
    }
}

.testimonial-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--green-medium);
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-text {
        text-align: left;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .testimonial-stars {
        justify-content: flex-start;
    }
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--green-medium-dark);
    color: var(--green-medium-dark);
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 1.25rem;
    }
}

.testimonial-name {
    color: var(--green-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.testimonial-role {
    color: var(--text-muted);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--green-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background-color: var(--green-medium-dark);
    width: 2rem;
    border-radius: 9999px;
}

/* Contact */
.contact {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.contact-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(10, 77, 60, 0.9);
}

.contact .container {
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    color: #fff;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--green-medium-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-light);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted-light);
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-map-wrapper {
    background-color: var(--text-light);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .contact-map-wrapper {
        padding: 2.5rem;
    }
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .map-container {
        padding-bottom: 60%;
    }
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--green-dark);
    color: var(--text-light);
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted-light);
    line-height: 1.75;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green-medium-light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li button,
.footer-links li a {
    background: none;
    border: none;
    color: var(--text-muted-light);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li button:hover,
.footer-links li a:hover {
    color: var(--green-medium-light);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-medium-light);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact span {
    color: var(--text-muted-light);
}

.footer-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-hours div {
    color: var(--text-muted-light);
}

.footer-hours p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--green-medium-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--green-medium);
}

.social-link .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-light);
}

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

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

.whatsapp-button .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 0.75rem);
    background-color: var(--green-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Ícones */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Utilidades */
.text-center {
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -4rem;
    right: 0;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    opacity: 0.8;
}

.lightbox-close:hover {
    color: var(--green-medium-light);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

