html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    /**/    
    line-height: 1.6;
}

a, button {
    transition: all 0.3s ease;
}

a:hover {
    transform: translateY(-2px);
}

#carousel img {
    transition: opacity 1s ease-in-out;
}

.titulo {
    font-family: 'Playfair Display', serif;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-hover {
    transition: all 0.3s ease;
    will-change: transform;
}

.btn-hover:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-hover {
    transition: all 0.3s ease;
    position: relative;
    will-change: transform;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(236, 72, 153, 0.1);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.card-hover:hover::after {
    opacity: 1;
}

.img-hover {
    transition: transform 0.5s ease;
}

.card-hover:hover .img-hover {
    transform: scale(1.08);
}

.gallery-img {
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.whatsapp-float {
    transition: 0.3s;
    will-change: transform;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

#mobileMenu {
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

#mobileMenu.is-open {
    opacity: 1;
}

#mobileMenu nav a {
    transform: translateX(10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobileMenu.is-open nav a {
    transform: translateX(0);
    opacity: 1;
}

#mobileMenu.is-open nav a:nth-child(1) { 
    transition-delay: 0.05s;
}

#mobileMenu.is-open nav a:nth-child(2) {
    transition-delay: 0.10s;
}

#mobileMenu.is-open nav a:nth-child(3) {
    transition-delay: 0.15s;
}

.service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.service-card.open {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.service-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.service-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ec4899;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-toggle.open {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
    padding: 0 1rem;
}

.service-card.open .service-content {
    opacity: 1;
    padding: 0 1rem 1rem 1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-info {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f3e8ff;
}

.service-info strong {
    color: #ec4899;
    font-weight: 600;
}

.service-info:last-child {
    border-bottom: none;
}

.service-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
}


.service-header {
    position: relative;
    z-index: 2;
}

/* Novo */

:root {
    --primary: #ec4899;
    --dark: #111;
    --light: #fdf2f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background: var(--light);
}

.header {
    background: var(--dark);
    color: white;
    position: sticky;
    top: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.logo {
    font-weight: bold;
}

.hero {
    height: 80vh;
    background: url('../img/Sala1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    text-align: center;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.title-center {
    text-align: center;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.max-text {
    max-width: 600px;
    margin: auto;
}

.mt {
    margin-top: 15px;
}

.link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    text-decoration: none;
}

.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
}
