/* Reset e variáveis CSS */
:root {
    --rosa-claro: #df9e92;
    --preto-suave: #2b2a29;
    --cinza-claro: #f4f4f4;
    --marrom-escuro: #704140;
    --marrom-medio: #725144;
    --branco: #ffffff;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--preto-suave);
    background-color: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--marrom-escuro);
    margin: 0;
    line-height: 1;
}

.logo span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--rosa-claro);
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--preto-suave);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--rosa-claro);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rosa-claro);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--preto-suave);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--branco);
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.carousel-content h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    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);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--rosa-claro);
    transform: scale(1.2);
}

/* Seções gerais */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--marrom-escuro);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--rosa-claro);
    border-radius: 2px;
}

/* Álbuns */
.albums {
    background: var(--cinza-claro);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.album-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.album-card:hover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--branco);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    transform: translateY(0);
}

.album-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.album-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal da Galeria */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 2rem;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--branco);
    border-radius: var(--border-radius);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--preto-suave);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: var(--rosa-claro);
}

#gallery-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--marrom-escuro);
    margin-bottom: 2rem;
    text-align: center;
}

/* Galeria minimalista */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    background: #fff;
    padding: 2rem 0;
}

.gallery-item, .gallery-grid img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: none;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Remover overlay e hover/escala da galeria */
.gallery-item:hover {
    transform: none;
    box-shadow: none;
}
.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: none;
}
.gallery-item-overlay {
    display: none !important;
}

.gallery-item-overlay i {
    color: var(--branco);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Visualizador de Imagem Aprimorado */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.image-viewer.active {
    display: flex;
}

.viewer-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    background: #fff;
}

.viewer-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--branco);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 3001;
}

.viewer-controls:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.viewer-prev {
    left: -60px;
}

.viewer-next {
    right: -60px;
}

.viewer-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--branco);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 3001;
}

.viewer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.viewer-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--branco);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    z-index: 3001;
}

.viewer-thumbnails {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    max-width: 80%;
    overflow-x: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 3001;
}

.viewer-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.viewer-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.viewer-thumbnails::-webkit-scrollbar-thumb {
    background: var(--rosa-claro);
    border-radius: 2px;
}

.thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--rosa-claro);
}

/* Depoimentos */
.testimonials {
    background: var(--cinza-claro);
}

/* Ajuste depoimentos para textos longos e carrossel manual */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.testimonial-container {
    position: relative;
    min-height: 420px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Depoimentos - corrigido para garantir botões clicáveis */
.testimonial {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    text-align: center;
    /* Removido position: absolute, top, left, opacity, transition, z-index */
}
.testimonial.active {
    display: flex;
    /* Removido position: relative, z-index, opacity */
}
.testimonial-content {
    background: var(--branco);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    max-width: 700px;
    margin: 0 auto;
    word-break: break-word;
    font-size: 1.1rem;
    line-height: 1.7;
}
.testimonial blockquote {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--marrom-escuro);
    font-style: italic;
    white-space: pre-line;
}
.testimonial cite {
    color: var(--rosa-claro);
    font-weight: 500;
    font-size: 1rem;
}
.testimonial-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--rosa-claro);
}
@media (max-width: 600px) {
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-btn {
    background: var(--rosa-claro);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-btn:hover {
    background: var(--marrom-escuro);
    color: var(--rosa-claro);
    transform: scale(1.08);
}
@media (max-width: 900px) {
    .testimonial-content {
        max-width: 95vw;
        padding: 1.5rem 0.5rem;
    }
    .testimonial-container {
        min-height: 350px;
    }
    .testimonial {
        min-height: 350px;
    }
}
@media (max-width: 600px) {
    .testimonial-content {
        font-size: 1rem;
        padding: 1rem 0.2rem;
    }
    .testimonial-container {
        min-height: 250px;
    }
    .testimonial {
        min-height: 250px;
    }
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    .testimonial-nav {
        gap: 1rem;
        margin-top: 1rem;
    }
    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Sobre */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--marrom-medio);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--rosa-claro);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--marrom-medio);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Contato */
.contact {
    background: var(--marrom-escuro);
    color: var(--branco);
}

.contact .section-title {
    color: var(--branco);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--rosa-claro);
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 2px solid var(--rosa-claro);
    border-radius: 50px;
    text-decoration: none;
    color: var(--branco);
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
}

.contact-btn:hover {
    background: var(--rosa-claro);
    color: var(--marrom-escuro);
    transform: translateY(-2px);
}

.contact-btn i {
    font-size: 1.2rem;
}

.contact-btn.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
    color: var(--branco);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--branco);
}

/* Footer */
.footer {
    background: var(--preto-suave);
    color: var(--branco);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--branco);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .carousel-content h2 {
        font-size: 2.5rem;
    }
    
    .carousel-content p {
        font-size: 1.1rem;
    }
    
    .carousel-content {
        padding: 2rem;
    }
    
    .carousel-btn {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
    }
    
    .viewer-controls {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .viewer-prev {
        left: -50px;
    }
    
    .viewer-next {
        right: -50px;
    }
    
    .viewer-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .viewer-thumbnails {
        bottom: 4rem;
        max-width: 90%;
        padding: 0.5rem;
    }
    
    .thumbnail {
        width: 50px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .viewer-prev {
        left: 1rem;
        top: 40%;
    }
    
    .viewer-next {
        right: 1rem;
        top: 40%;
    }
    
    .viewer-controls {
        font-size: 1.2rem;
        padding: 0.6rem;
    }
    
    .viewer-thumbnails {
        display: none;
    }
    
    .viewer-info {
        bottom: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    .gallery-item, .gallery-grid img {
        max-width: 98vw;
    }
}

/* Carrossel Minimalista */
.carousel-minimal-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 60vh;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
    display: block;
}
.carousel-minimal-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.carousel-minimal-slide.active {
    opacity: 1;
    position: absolute;
    z-index: 1;
}
.carousel-minimal-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.carousel-minimal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.25);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 90vw;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .carousel-minimal-container {
        height: 40vh;
        min-height: 200px;
    }
    .carousel-minimal-content {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Galeria estilo masonry */
.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
    padding: 2rem 0;
    background: #fff;
}

.gallery-grid img, .gallery-item {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    background: #fff;
    margin-bottom: 2rem;
    display: block;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 1rem;
        padding: 1rem 0;
    }
    .gallery-grid img, .gallery-item {
        margin-bottom: 1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-img {
    height: 64px;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.logo-img:hover {
    transform: rotate(360deg) scale(1.08);
}
@media (max-width: 480px) {
    .logo-img {
        height: 48px;
    }
}

/* Modal WhatsApp Formulário */
#whatsapp-form-modal .modal-content {
    max-width: 420px;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin: 5% auto;
}
#whatsapp-form-modal h3 {
    text-align: center;
    margin-bottom: 1.2rem;
    color: var(--marrom-escuro);
}
#whatsapp-form label {
    display: block;
    margin-bottom: 1rem;
    color: var(--marrom-escuro);
    font-size: 1rem;
    font-weight: 500;
}
#whatsapp-form input, #whatsapp-form select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--cinza-claro);
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    color: var(--preto-suave);
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}
#whatsapp-form input:focus, #whatsapp-form select:focus {
    outline: 2px solid var(--rosa-claro);
    border-color: var(--rosa-claro);
}
.whatsapp-send-btn {
    width: 100%;
    margin-top: 1.2rem;
    background: #25D366;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.whatsapp-send-btn:hover {
    background: #128C7E;
}
@media (max-width: 600px) {
    #whatsapp-form-modal .modal-content {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
}

/* Carrossel contínuo estilo Isis Castro */
.continuous-carousel {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-continuous-track {
  display: flex;
  width: calc(200% + 16px);
  animation: carousel-continuous 32s linear infinite;
  align-items: center;
}
.carousel-continuous-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  min-height: 220px;
  max-height: 420px;
  margin: 0 2vw;
  background: transparent;
}
.carousel-continuous-slide img {
  height: 100%;
  width: auto;
  max-width: 90vw;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.3s;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  background: #fff;
}
@keyframes carousel-continuous {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .carousel-continuous-slide, .carousel-continuous-slide img {
    height: 32vh;
    min-height: 120px;
    max-height: 220px;
  }
  .carousel-continuous-slide {
    margin: 0 1vw;
  }
}
