@font-face {
    font-family: 'fonte-h2-hero'; 
    src: url('../fonts/roses-bolero.woff2') format('woff2'),
         url('../fonts/roses-bolero.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
    opacity: 0;
    background-color: #2f1019;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    transition: opacity 0.7s ease-in-out;
}
body.site-loaded {
    opacity: 1;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/*-------- SEÇÃO HERO ----------*/
.hero-section {
    background-image: url('images/fundo-secao-hero.png');
    background-image: image-set(
        url("images/fundo-secao-hero.webp") type("image/webp"),
        url("images/fundo-secao-hero.png") type("image/png")
    );
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.hero-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-content {
    order: 2; 
    width: 100%;
}

.hero-image {
    order: 1;
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
}
.hero-image img {
    width: 100%;
    height: auto;
}
.hero-content h2 {
    font-family: 'fonte-h2-hero', sans-serif;
    font-size: 45px;
    color: #ffffff;
    text-shadow: 4px 4px 1px #31313179; 
}
.cro-span {
    display: inline-block;
    background-color: #5e1d31;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 5px;
}
.hero-section h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    background: linear-gradient(to right, #ffffff, #ffffff, #d64e7b);
    -webkit-background-clip: text;  /* Necessário para compatibilidade com Safari / Chrome */
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.1;
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.623));
    margin-bottom: 60px;
}
.descrition-hero {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 3px 3px #000000;
}
.address-info {
    margin-bottom: 2rem;
}
.address-info p {
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    text-shadow: 2px 3px 3px #000000;
}
.cta-button {
    display: inline-block;
    background-color: #5e1d31;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.527);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.cta-button p {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 1000;
    text-decoration: none;
}
.cta-button:hover {
    transform: translateY(-2px);
    background-color: #28a745;
}
/*-------- SEÇÃO MEUS-SERVIÇOS ----------*/
.my-services {
    background-image: url("images/fundo-secao-our-services.png");
    background-image: image-set(
        url("images/fundo-secao-our-services.webp") type("image/webp"),
        url("images/fundo-secao-our-services.png") type("image/png")
    );
    width: 100%;
    height: auto;
    margin: 0px auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 60px;
}
.my-services-swiper {
    overflow: visible;
    padding-bottom: 70px;
}
.my-services .swiper-wrapper {
    padding-top: 8px;
    padding-bottom: 10px;
}
.my-services h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 50px;
    line-height: 1.1;
    text-shadow: 1px 4px 1px #0000006e;
}
.swiper-slide.card {
    width: 215px;
    height: 220px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    background-color: #301019;
    border-radius: 42px;
    padding: 25px;
    text-align: left;
    margin-left: 10px;
    margin-right: 5px;
    box-shadow: 0 4px 15px rgba(128, 43, 43, 0.08);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: left;
}
.swiper-slide.card:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.25);
}
.swiper-pagination {
    bottom: 10 !important;
}
.my-services .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff75;
    opacity: 1;
    transition: background-color 0.3s, width 0.3s;
}
.my-services .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    color: #63289b;
    opacity: 1;
}
.card h3 {
    font-size: 1.25rem;
    font-weight: 1000;
    color: #ffffff;
    text-shadow: 1px 4px 1px #0000006e;
    margin-top: 0;
    margin-bottom: 10px;
}
.card h3 i {
    color: #808080;
}
.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 1px 3px 4px #000000b7;
}
/*-------- SEÇÃO TRABALHOS E FOTOS ----------*/
.works-realized {
    background-color: #2f1019;
    padding: 50px 0;
    overflow: hidden;
}
.works-realized h2 {
    font-size: 28px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 30px;
    margin-bottom: 50px;
    text-shadow: 1px 4px 1px #0000006e;
    line-height: 1.1;
}
.images-works {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.images-works img {
    width: 90%;           
    max-width: 450px;     
    height: auto;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.678);
    display: block; 
    margin-left: auto;
    margin-right: auto;
}
/*-------- SEÇÃO CRIANÇAS ----------*/
.kids-treatment {
    background-color: #5e1d31;
    padding: 30px 0;
    overflow: hidden;
}
.kids-treatment h2 {
    font-size: 28px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 30px;
    margin-bottom: 40px;
    text-shadow: 1px 4px 1px #0000006e;
    line-height: 1.1;
}
.kids-treatment p {
    font-size: 17px;
    margin: auto;
    max-width: 90%;
    text-align: center;
    line-height: 1.1;
    text-shadow: 1px 4px 1px #0000006e;
    margin-bottom: 30px;
}
.images-treatment-kids {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.images-treatment-kids img {
    width: 90%;           
    max-width: 450px;     
    height: auto;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.678);
    display: block; 
    margin-left: auto;
    margin-right: auto;
}
/*-------- SEÇÃO CONVERT-CLIENT ----------*/
.convert-client {
    background-color: #2f1019;
    text-align: center;
    padding-top: 35px;
}
.convert-client h2 {
    font-size: 28px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 30px;
    margin-bottom: 40px;
    text-shadow: 1px 4px 1px #0000006e;
    line-height: 1.1;
}
.convert-client-video video {
  width: 90%;
  max-width: 800px; 
  border-radius: 5px;
  box-shadow: 0 0px 15px rgba(155, 40, 65, 0.678);
  height: auto;
  display: block;
  margin: 0 auto;
}
.convert-client p {
    font-size: 18px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 30px;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 1px 4px 1px #0000006e;
    line-height: 1.1;;
}
.convert-client a {
    color: #ffffff;
    text-align: center;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 5px;
    transition: 0.5s;
    transition-property: box-shadow;
}
.convert-client a {
  background: rgb(150, 64, 107);
  box-shadow: 0 0 85px rgba(255, 255, 255, 0.37);
}
.convert-client a:hover {
    color: #ffffff;
    background: #28a745;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.281),
              0 0 25px rgba(255, 255, 255, 0.281),
              0 0 50px rgba(255, 255, 255, 0.281),
              0 0 100px rgba(255, 255, 255, 0.281);
}
.option-convert-client {
    padding-bottom: 40px;
}
.option-convert-client p {
    font-size: 18px;
    max-width: 90%;
    text-align: center;
    margin: 30px auto 0;
    text-shadow: 1px 4px 1px #0000006e;
    line-height: 1.1;
}
/*-------- SEÇÃO CTA-INSTAGRAM ----------*/
.cta-instagram {
    background-color: rgb(150, 64, 107);
    text-align: center;
    padding-top: 15px;
    padding-bottom: 40px;
}
.cta-instagram h2 {
    font-size: 25px;
    margin-top: 30px;
    text-shadow: 1px 4px 1px #000000b4;
}
.cta-instagram a {
    color: #2f1019;
    font-size: 75px;
    padding-top: 15px;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease-in-out;
    text-shadow: 1px 4px 1px #ffffff6e;
}
.cta-instagram a:hover {
    transform: translateY(-5px);
    color: #ffffff;
    text-shadow: 1px 4px 1px #0000006e;
}
.cta-instagram-img {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.cta-instagram-img img {
    width: 90%;           
    max-width: 450px;     
    height: auto;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.678);
    display: block; 
    margin-left: auto;
    margin-right: auto;
}
/*-------- FOOTER ----------*/
.footer {
    background-color:#5e1d31;
}
.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.footer-about h4 {
    color: #ffffff;
    text-align: left;
    margin-left: 10px;
}
.footer-about p {
    color: #ffffff;
    text-align: left;
    margin-left: 10px;
}
.footer-bottom {
    text-align: left;
    margin-left: 10px;
}

/*-------- MEDIA / RESPONSIVIDADE ----------*/

/*-------- SEÇÃO HERO ----------*/
@media (min-width: 769px) {
    .hero-section {
        background-image: url(images/fundo-hero-desktop.png);
        background-image: image-set(
        url("images/fundo-hero-desktop.webp") type("image/webp"),
        url("images/fundo-hero-desktop.png") type("image/png")
    );
    }
    .hero-container {
        flex-direction: row; /* Coloca os itens lado a lado */
        justify-content: space-between;
        text-align: left; /* Alinha o texto à esquerda */
    }
    /* --- Inverte a ordem para o Desktop --- */
    .hero-content {
        /* No desktop, o conteúdo vem primeiro (order: 1) */
        order: 1;
        flex-basis: 50%;
        padding-right: 2rem;
    }
    .hero-image {
        /* No desktop, a imagem vem depois (order: 2) */
        order: 2;
        flex-basis: 45%;
        margin-bottom: 0;
        max-width: none;
    }
    /* --- Ajustes de alinhamento para Desktop --- */
    .descrition-hero {
        margin-left: 0;
        margin-right: 0;
    }
    .address-info p {
        justify-content: flex-start; /* Alinha à esquerda */
    }
    .hero-content h1 span {
        display: inline; /* Mantém na mesma linha no desktop */
    }
}
/*-------- SWIPER SERVIÇOS ----------*/
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        top: 40% !important;
        width: 35px !important;
        height: 35px !important;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}
/*-------- SEÇÃO SERVIÇOS ----------*/
@media (min-width: 1024px) {
    .my-services-swiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .my-services-swiper .swiper-slide.card {
        flex-grow: 1;
        flex-basis: 250px;
        max-width: 250px;
        width: auto;
        margin-bottom: 20px;
    }
    .my-services .swiper-pagination {
        display: none;
    }
}
/*-------- SEÇÃO CRIANÇAS ----------*/
@media (min-width: 769px) {
    .images-works {
        flex-direction: row;     /* Lado a lado */
        flex-wrap: wrap;         /* Quebra a linha */
        justify-content: center; /* Centraliza o grupo */
        gap: 25px 10px;
        max-width: 1400px;
        margin: 0 auto; /* Centraliza o container principal */
    }
    .images-works img {
        margin-bottom: 0; 
    }
}
@media (min-width: 769px) {
    .images-treatment-kids {
        flex-direction: row;     /* Lado a lado */
        flex-wrap: wrap;         /* Quebra a linha */
        justify-content: center; /* Centraliza o grupo */
        gap: 25px 10px;
        max-width: 1400px;
        margin: 0 auto; /* Centraliza o container principal */
    }
    .images-treatment-kids img {
        margin-bottom: 0;
    }
}