:root {
    --primary-pink: #d63384; /* Rosa vivo da imagem */
    --bg-light: #fdf2f5;
    --text-dark: #4a1a2c;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(90deg, #a1445e 0%, #d63384 100%);
    padding: 1rem 0; /* Restaurei o tamanho original da caixa de fundo */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Adicionado para evitar que o conteúdo do header transborde */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.logo {
    font-family: var(--font-title);
    color: white;
    font-size: 1.5rem; /* Reduzi o tamanho da fonte para melhor proporção */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Ajustei o espaçamento entre os links */
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem; /* Reduzi o tamanho da fonte para melhor proporção */
}

.btn-nav {
    background: white;
    color: var(--primary-pink) !important;
    padding: 8px 20px; /* Ajustei o padding para um botão mais compacto */
    border-radius: 50px;
    font-size: 0.9rem; /* Reduzi o tamanho da fonte do botão */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(161, 68, 94, 0.1) 0%, rgba(214, 51, 132, 0.1) 100%);
    padding: 100px 0;
    position: relative;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.top-whatsapp-fab {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(20, 94, 49, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-instagram-fab {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(129, 52, 175, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-whatsapp-fab:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(20, 94, 49, 0.45);
}

.top-instagram-fab:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(129, 52, 175, 0.45);
}

.top-whatsapp-fab img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.top-instagram-fab img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.floating-social-links {
    position: fixed;
    left: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1085;
}

.floating-whatsapp-fab,
.floating-instagram-fab {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp-fab {
    background: #25D366;
}

.floating-instagram-fab {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
}

.floating-whatsapp-fab:hover,
.floating-instagram-fab:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    animation: none;
}

.floating-whatsapp-fab img,
.floating-instagram-fab img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}
.hero-text h1 {
    font-family: var(--font-title);
    font-size: 5rem;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%; /* Para transbordar um pouco como na arte */

}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: white;
    border: 2px solid #e9a9bc;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transition: 0.3s;
    /* Sombra rosa suave */
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.1);
}

.service-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.2);
}

.card-subtitle {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.service-card h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline {
    font-weight: bold;
    margin-bottom: 15px;
    color: #666;
}

.service-card .card-content p {
    text-align: justify;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
    padding-left: 10px;
    animation: fadeInUp 0.6s ease-out;
}

.service-card .treatment-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .item-icon {
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

.soft-pink-dot {
    color: #e85e9a;
    font-size: 0.95em;
    line-height: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #a1445e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary-pink);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Logo Center */
.logo-center {
    text-align: center;
    margin: 30px 0;
    padding: 0;
}

.logo-center img {
    width: 130px;
    height: auto;
}

/* Ajustes Mobile */
@media (max-width: 768px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .top-whatsapp-fab {
        width: 32px;
        height: 32px;
    }

    .top-instagram-fab {
        width: 32px;
        height: 32px;
    }

    .top-whatsapp-fab img {
        width: 17px;
        height: 17px;
    }

    .top-instagram-fab img {
        width: 17px;
        height: 17px;
    }

    .floating-social-links {
        left: 10px;
        bottom: 12px;
    }

    .floating-whatsapp-fab,
    .floating-instagram-fab {
        width: 42px;
        height: 42px;
    }

    .floating-whatsapp-fab img,
    .floating-instagram-fab img {
        width: 20px;
        height: 20px;
    }
    body {
        font-size: 90%; /* Reduzi o tamanho geral das fontes para suavizar a aparência */
    }

    .services-grid {
        padding: 0 3px; /* Adicionei espaçamento entre os cards e a tela */
    }

    .service-card {
        margin: 0 3px; /* Adicionei margem lateral para evitar que os cards encostem na tela */
    }

    .contact-links {
        padding: 0 3px; /* Adicionei espaçamento lateral para os links de contato */
    }

    /* Menu links sempre visíveis */
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: column;
        background: none;
        gap: 1rem;
        padding: 1rem 0;
        align-items: center;
        width: 100%;
    }

    .nav-links li {
        width: auto;
        text-align: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

    .logo {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    header nav {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilo para a seção de contato */
.contact-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin: 0 0 10px 0;
}

.contact-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form .btn-submit {
    background: var(--primary-pink);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .btn-submit:hover {
    background: #a1445e;
}

.contact-address {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    padding-bottom: 10px;
}

.contact-address h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.contact-map-wrapper {
    max-width: 900px;
    margin: 18px auto 8px;
    text-align: center;
}

.contact-map-wrapper h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

.contact-map {
    width: 100%;
    max-width: 100%;
    display: block;
    min-height: 320px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(74, 26, 44, 0.15);
}

.contact-map-wrapper iframe {
    width: 100%;
    max-width: 100%;
}

.contact-whatsapp {
    text-align: center;
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #1DA851;
}

/* Estilo atualizado para links de contato com efeito de lanterna mais fluido */
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-links .btn-whatsapp, .contact-links .btn-instagram {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.7), rgba(29, 168, 81, 0.7));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-links .btn-instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.7), rgba(193, 53, 132, 0.7));
}

.contact-links .btn-whatsapp::before, .contact-links .btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    animation: lantern-smooth 4s infinite;
    z-index: 0;
}

.contact-links .btn-whatsapp:hover, .contact-links .btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.contact-links .btn-whatsapp, .contact-links .btn-instagram {
    position: relative;
    z-index: 1;
}

.contact-links .icon {
    width: 28px;
    height: 28px;
    z-index: 1;
}

@keyframes lantern-smooth {
    0% {
        left: -60%;
        opacity: 0;
    }
    25% {
        left: 10%;
        opacity: 1;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
    75% {
        left: 100%; /* Delay mais longo antes de voltar */
        opacity: 1;
    }
    100% {
        left: -60%;
        opacity: 0;
    }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .logo-center img {
        width: 100px; /* Reduzi o tamanho da logo para telas menores */
    }

    .contact-title {
        font-size: 2rem; /* Ajustei o tamanho da fonte para melhor adaptação */
    }

    .contact-description {
        font-size: 1rem; /* Reduzi o tamanho da fonte para telas menores */
    }

    .contact-links {
        gap: 15px;
        padding-bottom: 6px; /* Adicionei um padding abaixo do card do Instagram no mobile */
    }

    .contact-links .btn-whatsapp, .contact-links .btn-instagram {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .contact-links .icon {
        width: 24px;
        height: 24px;
    }

    .contact-address {
        font-size: 1rem; /* Ajustei o tamanho da fonte do endereço */
    }

    .contact-map {
        min-height: 260px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-contact p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .footer-contact strong {
        display: block;
        margin-top: 8px;
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

    header {
        padding: 0.8rem 0; /* Reduzi ainda mais o padding para telas menores */
    }

    .logo {
        font-size: 1.2rem; /* Ajustei o tamanho da logo para telas menores */
    }

    .nav-links {
        flex-direction: row; /* Alinhei os links lado a lado */
        gap: 1rem; /* Espaçamento entre os links */
    }

    .btn-nav {
        padding: 6px 15px; /* Ajustei o padding do botão para telas menores */
        font-size: 0.8rem;
    }

    .hero-text img {
        width: 100px; /* Reduzi o tamanho da logo na home para telas menores */
        height: auto;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0; /* Reduzi o padding para suavizar o header */
    }

    .logo {
        font-size: 1.5rem; /* Destaque para o nome no topo */
        margin-bottom: 0.5rem; /* Espaçamento entre o nome e os links */
    }

    .nav-links {
        flex-direction: row; /* Alinhei os links lado a lado */
        gap: 1rem; /* Espaçamento entre os links */
    }

    footer {
        padding: 2rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16), transparent 32%),
        radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(120deg, #6f1f3c 0%, #a72f61 52%, #d14b86 100%);
    color: white;
    padding: 56px 0 34px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.footer-section {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(58, 9, 29, 0.22);
    backdrop-filter: blur(4px);
    text-align: center;
}

.footer-section h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s, transform 0.25s;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-address-line {
    width: 100%;
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 16px 5% 0;
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-address-line p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
    text-align: center;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.84);
}

/* Services Page */
.services-page .services-hero {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
        linear-gradient(120deg, #7f2b46 0%, #d63384 55%, #f083a7 100%);
    color: white;
    padding: 70px 0 80px;
}

.services-page .services-hero-content {
    max-width: 900px;
    text-align: center;
}

.services-page .services-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.services-page .services-hero h1 {
    font-family: var(--font-title);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-page .services-hero p {
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-page .services-hero-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.services-page .services-hero-tags span {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services-page .services-catalog {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.services-page .services-info-toast {
    position: fixed;
    top: 84px;
    right: 16px;
    max-width: 410px;
    width: calc(100vw - 26px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(120deg, #fff7fb 0%, #ffeaf3 100%);
    border: 1px solid #f3cede;
    border-radius: 14px;
    padding: 11px 12px;
    box-shadow: 0 10px 22px rgba(127, 43, 70, 0.18);
    color: #6b2e43;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 1200;
}

.services-page .services-info-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.services-page .services-info-toast p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
    text-align: center;
}

.services-page .services-info-toast strong {
    color: #9f2f59;
}

.services-page .services-info-toast-close {
    border: 1px solid #e8b9cd;
    background: #fff;
    color: #8b3553;
    min-width: 34px;
    height: 24px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 8px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
}

.services-page .services-info-toast-close:hover {
    background: #ffe8f2;
}

.services-page .service-card {
    border: none;
    box-shadow: 0 20px 45px rgba(127, 43, 70, 0.15);
}

.services-page .priced-list {
    list-style: none;
    margin-top: 18px;
}

.services-page .priced-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed #efc4d4;
    font-size: 1rem;
    margin-bottom: 0;
    animation: none;
}

.services-page .priced-list strong {
    background: #fde5ee;
    color: #972c53;
    font-size: 0.92rem;
    padding: 6px 10px;
    border-radius: 999px;
    min-width: 82px;
    text-align: center;
}

.services-page .priced-list strong a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    animation: consultFloat 2.4s ease-in-out infinite;
    transition: transform 0.25s ease, color 0.25s ease;
}

.services-page .priced-list strong a:hover {
    text-decoration: underline;
    transform: translateY(-1px);
    color: #7f2b46;
}

.services-page .services-final-cta {
    scroll-margin-top: 120px;
}

.services-page .services-final-cta.cta-highlight {
    animation: ctaPulse 1.2s ease;
}

@keyframes consultFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 rgba(214, 51, 132, 0);
    }
    40% {
        box-shadow: 0 0 0 10px rgba(214, 51, 132, 0.16);
    }
    100% {
        box-shadow: 0 0 0 rgba(214, 51, 132, 0);
    }
}

.services-page .service-combos {
    padding-bottom: 20px;
}

.services-page .services-details {
    padding-top: 6px;
    padding-bottom: 24px;
}

.services-page .services-details h2 {
    text-align: center;
    font-family: var(--font-title);
    color: #972c53;
    font-size: 2rem;
    margin-bottom: 10px;
}

.services-page .services-details > p {
    text-align: center;
    color: #713043;
    max-width: 760px;
    margin: 0 auto 24px;
}

.services-page .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.services-page .detail-card {
    background: #fff;
    border: 1px solid #f3cedd;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.1);
}

.services-page .detail-card h3 {
    font-family: var(--font-title);
    color: #9f2f59;
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.services-page .detail-card p {
    color: #5f2d3f;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

.services-page .detail-card .detail-note {
    background: #fff5f8;
    border-left: 4px solid #d63384;
    border-radius: 10px;
    padding: 10px 12px;
}

.services-page .detail-card ul {
    list-style: none;
}

.services-page .detail-card li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed #efc4d4;
    color: #4f2534;
}

.services-page .detail-card strong {
    color: #972c53;
    white-space: nowrap;
}

.services-page .service-combos h2 {
    text-align: center;
    font-family: var(--font-title);
    color: #972c53;
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.services-page .service-combos > p {
    text-align: center;
    color: #713043;
    margin-bottom: 28px;
}

.services-page .combo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-page .combo-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.1);
    border: 1px solid #f3cedd;
}

.services-page .combo-card-featured {
    background: linear-gradient(145deg, #d63384, #ab2f66);
    color: white;
    transform: translateY(-8px);
}

.services-page .combo-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #b03a69;
}

.services-page .combo-card-featured .combo-label {
    color: #ffe7f0;
}

.services-page .combo-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.services-page .combo-card p {
    line-height: 1.5;
    color: #5f2d3e;
}

.services-page .combo-card-featured p {
    color: rgba(255, 255, 255, 0.92);
}

.services-page .combo-price {
    margin-top: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #972c53;
}

.services-page .combo-price a {
    color: inherit;
    text-decoration: none;
    animation: consultFloat 2.4s ease-in-out infinite;
}

.services-page .combo-price a:hover {
    text-decoration: underline;
}

.services-page .combo-card-featured .combo-price {
    color: white;
}

.services-page .services-final-cta {
    margin-top: 20px;
    background: linear-gradient(90deg, #f6d6e3 0%, #fbe8ef 100%);
    text-align: center;
    padding: 54px 0;
}

.services-page .services-final-cta h2 {
    font-family: var(--font-title);
    color: #7f2b46;
    margin-bottom: 10px;
}

.services-page .services-final-cta p {
    color: #703143;
    margin-bottom: 24px;
}

.services-page .floating-discount-card {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(270px, calc(100vw - 24px));
    background: linear-gradient(155deg, #fff8fb 0%, #ffe6f0 100%);
    border: 1px solid #f1bfd3;
    border-radius: 16px;
    padding: 12px 12px 10px;
    box-shadow: 0 10px 24px rgba(127, 43, 70, 0.2);
    z-index: 1100;
    overflow: hidden;
}

.services-page .floating-discount-card.is-hidden {
    display: none;
}

.services-page .floating-discount-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #e5b6c9;
    background: rgba(255, 255, 255, 0.92);
    color: #8f3858;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.services-page .floating-discount-close:hover {
    background: #fff;
}

.services-page .floating-discount-card::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -75%;
    width: 60%;
    height: 160%;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: rotate(10deg);
    animation: discountLightSweep 3s ease-in-out infinite;
    pointer-events: none;
}

.services-page .floating-discount-card .discount-kicker {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    color: #a33a62;
    margin-bottom: 4px;
}

.services-page .floating-discount-card h3 {
    font-family: var(--font-title);
    font-size: 1.08rem;
    color: #7f2b46;
    margin-bottom: 4px;
}

.services-page .floating-discount-card .discount-summary {
    color: #6b3447;
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 7px;
}

.services-page .floating-discount-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-page .floating-discount-card li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #5c2a3c;
    font-size: 0.84rem;
    padding: 4px 0;
    border-bottom: 1px dashed #e9b6cb;
}

.services-page .floating-discount-card li strong {
    color: #9c2f57;
    font-size: 0.94rem;
}

.services-page .floating-discount-card li span {
    font-weight: 600;
}

.services-page .floating-discount-card .discount-note {
    margin-top: 7px;
    font-size: 0.68rem;
    color: #7c3a51;
}

@keyframes discountLightSweep {
    0% {
        left: -85%;
        opacity: 0;
    }
    15% {
        opacity: 0.95;
    }
    45% {
        left: 125%;
        opacity: 0;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}

@media (max-width: 960px) {
    .services-page .details-grid {
        grid-template-columns: 1fr;
    }

    .services-page .combo-grid {
        grid-template-columns: 1fr;
    }

    .services-page .combo-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .services-page .services-hero h1 {
        font-size: 2.1rem;
    }

    .services-page .services-hero {
        padding: 52px 0 64px;
    }

    .services-page .services-catalog {
        margin-top: -28px;
    }

    .services-page .services-info-toast {
        top: 76px;
        right: 10px;
        width: calc(100vw - 20px);
    }

    .services-page .priced-list li {
        font-size: 0.95rem;
    }

    .services-page .floating-discount-card {
        right: 10px;
        bottom: 10px;
        width: min(240px, calc(100vw - 20px));
        border-radius: 13px;
        padding: 10px 10px 9px;
    }

    .services-page .floating-discount-card h3 {
        font-size: 0.98rem;
    }
}

/* Before and After Pages */
.before-after-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(120deg, #fce6ef 0%, #f8d2e2 50%, #f3bfd6 100%);
}

.before-after-main {
    padding: 70px 5% 90px;
}

.before-after-card {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #efc7d8;
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 16px 34px rgba(127, 43, 70, 0.16);
    text-align: center;
}

.before-after-kicker {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #9f365f;
    margin-bottom: 10px;
}

.before-after-card h1 {
    font-family: var(--font-title);
    color: #7f2b46;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.before-after-card p {
    color: #633143;
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .before-after-main {
        padding: 48px 5% 64px;
    }

    .before-after-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .before-after-card h1 {
        font-size: 1.7rem;
    }
}

/* About Page */
.about-page .about-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
        linear-gradient(120deg, #8c3652 0%, #d63384 60%, #f198b5 100%);
    color: white;
    padding: 72px 0;
}

.about-page .about-hero-content {
    text-align: center;
    max-width: 880px;
}

.about-page .about-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-page .about-hero h1 {
    font-family: var(--font-title);
    font-size: 2.9rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-page .about-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.about-page .about-pillars {
    margin-top: -34px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-page .about-pillar-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(127, 43, 70, 0.14);
    border: 1px solid #f1d0de;
}

.about-page .about-pillar-card h2 {
    font-family: var(--font-title);
    color: #a33560;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-page .about-pillar-card p {
    line-height: 1.6;
    color: #5f2d3f;
}

.about-page .about-differentials {
    padding-top: 54px;
}

.about-page .about-differentials h2,
.about-page .about-timeline h2,
.about-page .about-testimonials h2,
.about-page .about-cta h2 {
    text-align: center;
    font-family: var(--font-title);
    color: #7f2b46;
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.about-page .about-differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-page .about-feature-card {
    background: #fff;
    border: 1px solid #f2d7e2;
    border-radius: 16px;
    padding: 22px;
}

.about-page .about-feature-card h3 {
    color: #9f2f59;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.about-page .about-feature-card p {
    color: #5f2d3f;
    line-height: 1.55;
}

.about-page .about-timeline {
    padding-top: 48px;
}

.about-page .about-timeline ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.about-page .about-timeline li {
    background: #fff;
    border-left: 5px solid #d63384;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: #4f2534;
    box-shadow: 0 8px 18px rgba(214, 51, 132, 0.08);
}

.about-page .about-testimonials {
    padding-top: 42px;
}

.about-page .about-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-page .about-testimonial-card {
    margin: 0;
    background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
    border: 1px solid #f1d4df;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.about-page .about-testimonial-card p {
    color: #592a3b;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-page .about-testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: #9d3460;
}

.about-page .about-cta {
    margin-top: 42px;
    background: linear-gradient(90deg, #f7dbe7 0%, #fdeef4 100%);
    text-align: center;
    padding: 56px 0;
}

.about-page .about-cta p {
    color: #703143;
    margin-bottom: 24px;
}

@media (max-width: 960px) {
    .about-page .about-pillars,
    .about-page .about-differentials-grid,
    .about-page .about-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-pillars {
        margin-top: -24px;
    }
}

@media (max-width: 768px) {
    .about-page .about-hero {
        padding: 56px 0;
    }

    .about-page .about-hero h1 {
        font-size: 2.05rem;
    }

    .about-page .about-differentials h2,
    .about-page .about-timeline h2,
    .about-page .about-testimonials h2,
    .about-page .about-cta h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    footer {
        overflow-x: hidden;
    }

    .footer-content {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-section,
    .footer-address-line,
    .footer-bottom {
        width: 100%;
        max-width: 100%;
    }

    .footer-section,
    .footer-address-line p,
    .footer-bottom {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-address-line {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Home mobile tweaks */
@media (max-width: 768px) {
    body:not(.services-page):not(.about-page):not(.before-after-page) .hero {
        padding-top: 0;
        margin-top: 0;
    }

    body:not(.services-page):not(.about-page):not(.before-after-page) .hero-text img {
        width: 150px;
        height: auto;
    }
}
