/* ===== 1. GLOBAIS E FONTES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFDFB;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #ff69b4;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 {
    font-size: 2rem;
    border-bottom: 2px solid #ff69b4;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}
h3 {
    font-size: 1.25rem;
    color: #ff69b4;
}

section {
    margin-bottom: 3rem;
}

/* ===== 2. BARRA DE NAVEGAÇÃO ===== */
.navbar {
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
}
.navbar .logo img {
    height: 50px;
}
.navbar .social-icons {
    display: flex;
    gap: 15px;
}
.navbar .social-icons img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.navbar .social-icons img:hover {
    opacity: 1;
}

/* ===== 3. MENU MOBILE ===== */
.mobile-menu-container {
    display: none;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 70px;
    z-index: 998;
}
.mobile-menu-container a {
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    color: #333;
}

/* ===== 4. SEÇÃO HERO ===== */
.hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hero-text {
    flex: 2;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cta-button {
    display: inline-block;
    background-color: #ff69b4;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.4);
    margin-top: 1rem;
}
.cta-button:hover {
    background-color: #ff85c1;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.6);
}

/* ===== 5. CATÁLOGO DE PROCEDIMENTOS ===== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.price-box {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}
.card details {
    margin-bottom: 1rem;
}
.card details summary {
    font-size: 0.9rem;
    color: #ff69b4;
    font-weight: bold;
    cursor: pointer;
}
.card details p {
    font-size: 0.9rem;
    text-align: left;
    color: #555;
    padding-top: 10px;
}
.button {
    display: block;
    background-color: #ff69b4;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s;
}
.button:hover {
    background-color: #ff85c1;
}

/* ===== 6. GALERIA DE FOTOS COM LEGENDA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-item figure {
    margin: 0;
    position: relative;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}
.gallery-item figcaption {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 5px;
    color: #555;
}

/* ===== CARROSSEL DA GALERIA ===== */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.carousel img {
    width: 100%;
    display: none;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
}
.carousel img.active {
    display: block;
}

/* ===== 7. SEÇÃO SOBRE MIM ===== */
.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
}
.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}
.about-text li {
    padding-bottom: 5px;
}

/* ===== 8. RODAPÉ ===== */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}
.footer-social img {
    width: 30px;
    height: 30px;
}


/* Ajuste do card de vídeo */
.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff5f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.03);
}

.video-card h3 {
    color: #e28ca6;
    margin-top: 10px;
    font-size: 1.1rem;
}

.video-card p {
    font-size: 0.95rem;
    color: #555;
}


/* ===== 9. RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .container { padding: 15px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .navbar .social-icons,
    .navbar .logo strong { display: none; }
    .mobile-menu-container { display: block; }
    .hero { flex-direction: column-reverse; padding: 2rem 1.5rem; text-align: center; }
    .cta-button { width: 100%; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .card { padding: 10px; }
    .card h3 { font-size: 1rem; }
    .price-box { font-size: 0.95rem; }
    .button { padding: 10px; font-size: 0.9rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .about-container { flex-direction: column; text-align: center; padding: 1.5rem; }
    .about-image img { width: 200px; height: 200px; }
}
