*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --rosa: #e3bec3;
    --cinza: #808080;
    --rosa-forte: #f67599;
    --marrom: #c1858f;
}

/* Global container consistency */
.container {
    width: 100%;
    max-width: 1140px; /* Match Bootstrap container width */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Fix for container width issues */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@font-face {
    font-family: 'SafiraMarch';
    src: url('/assets/fonts/SafiraMarch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 54, 104, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

body,
html {
    scroll-behavior: smooth;
    font-family: "SafiraMarch";
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h2 {
    color: var(--rosa-forte);
}

p {
    font-size: 1.1rem;
}

a:hover {
    text-decoration: none;
}

.name-input {
    display: none;
    visibility: hidden;
}

#cronometro,
#chamada,
#depoimentos,
#sobre-jbs,
#servicos {
    padding: 40px 0;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}

button:focus {
    outline: none;
}

a.btn-cta,
button.btn-cta {
    border: none;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 30px;
    font-size: 1.3rem;
    transition: all 0.3s;
    border-radius: 50px;
    border: 4px solid #fff;
}

a.btn-cta:hover,
button.btn-cta:hover {
    transform: scale(1.03);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ENVIANDO FORM */
#enviando-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    display: none;
}

#enviando-form.active {
    display: block;
}

#enviando-form .wrapper {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#enviando-form .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

#enviando-form .circle:nth-child(2) {
    left: 45%;
    background-color: var(--primary);
    animation-delay: 0.2s;
}

#enviando-form .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
    background-color: var(--dark);
}

#enviando-form .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: 0.7;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.4;
    }
}

#enviando-form .shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

#enviando-form .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

#enviando-form .wrapper span {
    position: absolute;
    top: 75px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    width: 400px;
    left: -50%;
    text-align: center;
}

@media (max-width: 576px) {
    #enviando-form .wrapper span {
        width: 280px;
        left: -20%;
    }
}

/* WHATSAPP */

#modalWhatsapp button.cta {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #25d366;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    font-size: 1.5rem;
    transition: all 0.5s;
    border: none;
    outline: none;
    width: 100%;
    transition: all 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

#modalWhatsapp button.cta:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    z-index: 90;
    position: fixed;
    bottom: 20px;
    right: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 465px) {
    .btn-whatsapp-pulse {
        bottom: 40px;
    }
}

/* RODAPÉ */
footer {
    padding: 15px 0;
    background-color: #ff9eb9; /* Rosa mais claro, mesmo tom usado no banner e navbar */
    color: #000; /* Texto preto para melhor contraste com fundo rosa */
    font-size: 0.9rem;
}

footer iframe {
    width: 100%;
    height: 200px;
}

footer .infos li {
    font-weight: 400;
}

footer a,
footer p,
footer ul li {
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
}

footer a.loja {
    font-weight: bold;
    color: #f57328;
}

footer img {
    width: 150px;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a,
footer ul li a:hover {
    color: #000;
    font-weight: bold;
}

footer hr {
    border-color: #fff;
}

footer .desenvo a {
    color: #f57328;
    font-weight: bold;
    font-weight: bold;
}

.modal-body iframe {
    width: 100%;
    height: 400px;
}

header form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

header form button {
    background-color: var(--cinza);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    color: #fff;
}

#local iframe {
    width: 100%;
    height: 400px;
    display: block;
}

#depo .card-depo {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

#depo .card-depo i {
    color: #ffde00;
    filter: drop-shadow(1px 0px 0px #f57328);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 999;
}

.cookie-banner button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

.form-check .form-check-label {
    color: #000;
}

.form-group .is-invalid {
    color: red;
}

/* ===== MENU RESPONSIVO ===== */

/* Navbar principal */
.menu-fixo {
    background: rgba(255, 158, 185, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.menu-fixo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    width: 100%;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: block;
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Hamburger button */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    outline: none;
    position: relative;
    width: 45px;
    height: 45px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 10px;
}

.hamburger-line:nth-child(1) {
    top: 15px;
}

.hamburger-line:nth-child(2) {
    top: 22px;
}

.hamburger-line:nth-child(3) {
    top: 29px;
}

.menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 22px;
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
}

/* Desktop menu */
.menu-desktop {
    display: flex;
    align-items: center;
}

.menu-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.menu-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.menu-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.menu-links li a:hover {
    color: #ffffff;
}

.menu-links li a:hover::after {
    width: 100%;
}

/* Social media icons in navbar */
.redes-sociais-navbar {
    display: flex;
    align-items: center;
    margin-left: 30px;
    gap: 15px;
}

.redes-sociais-navbar a {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.redes-sociais-navbar a:hover {
    transform: translateY(-3px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport width */
    height: 100vh; /* Use viewport height */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    margin: 0;
    padding: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1003;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.close-menu {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

/* Mobile menu content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    flex: 1;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-menu-links li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: calc(0.1s * var(--i, 0));
}

.mobile-menu.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links li a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-links li a:hover {
    color: var(--rosa-forte);
    padding-left: 5px;
}

/* Mobile social links */
.mobile-social-links {
    display: flex;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 30px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-social-links {
    opacity: 1;
    transform: translateY(0);
}

.mobile-social-links a {
    color: #333;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
}

.mobile-social-links a:hover {
    color: var(--rosa-forte);
    transform: scale(1.1);
    background-color: rgba(246, 117, 153, 0.1);
}

/* Mobile CTA button */
.mobile-cta {
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--rosa-forte);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-cta-button i {
    margin-right: 8px;
    font-size: 18px;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    color: white;
    background-color: #e06388; /* Slightly darker shade for hover */
}

/* Body class when menu is open */
.menu-open {
    overflow: hidden;
}

/* Responsive styles */
@media (max-width: 991px) {
    .menu-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .menu-fixo .container {
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    .logo-img {
        height: 45px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .hamburger-line {
        width: 22px;
    }
    
    .mobile-menu-links li a {
        font-size: 16px;
    }
}

/* MENU DO TOPO */

/* SEÇÃO INSTAGRAM */
.secao-instagram {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.secao-instagram h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.secao-instagram p {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 25px;
}

.btn-instagram {
    background-color: #E1306C;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-instagram:hover {
    background-color: #c42b60;
}

/* SEÇÃO INSTAGRAM */

/* SEÇÃO DE CONTATO */
.secao-contato {
    padding: 60px 20px;
    background-color: #fff;
}

.secao-contato h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.contato-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.contato-grid .mapa,
.contato-grid .info-contato {
    flex: 1 1 300px;
    max-width: 500px;
}

.info-contato p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #555;
}

.btn-whats {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-whats:hover {
    background-color: #1ebe5d;
}

/* SEÇÃO DE CONTATO */

/* SEÇÃO DO CTA FLUTUANTE */
.cta-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.cta-fixo:hover {
    background-color: #1ebe5d;
}

.cta-fixo i {
    font-size: 20px;
}

/* SEÇÃO DO CTA FLUTUANTE */

/* SEÇÃO DO CTA FIXO */
.cta-final {
    background-color: #f0e6dd;
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.cta-final p {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-final {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-cta-final:hover {
    background-color: #1ebe5d;
}

/* SEÇÃO DO CTA FIXO */

/* PÁGINA DE TRATAMENTOS */
.page-tratamentos {
    padding: 60px 20px;
    background-color: #fff;
}

.titulo-page-tratamentos {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.page-tratamentos strong {
    color: #a675b0;
}

.grid-page-tratamentos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.item-page-tratamento h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
}

.item-page-tratamento p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 768px) {
    .grid-page-tratamentos {
        grid-template-columns: 1fr;
    }
}

.grid-page-tratamentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.item-page-tratamento {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fafafa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.item-page-tratamento:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.item-page-tratamento img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.item-page-tratamento h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.meta-infos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 190, 195, 0.6);
    padding: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 3;
}

.item-page-tratamento:hover .meta-infos {
    transform: translateY(0);
}

.meta-infos .meta-text {
    font-size: 15px;
    color: #444;
}

.btn-tratamento {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rosa-forte, #f67599);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(246, 117, 153, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-tratamento:hover {
    background: #e06488;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(240, 100, 136, 0.35);
}

/* PÁGINA DE TRATAMENTOS */

/* PÁGINA SINGLE DO TRATAMENTO */
.page-single-tratamento {
    margin-top: 150px;
}

/* PÁGINA SINGLE DO TRATAMENTO */