@media (max-width: 700px) {
    .contato-item {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        margin-bottom: 0.7rem;
        font-size: 1.05rem;
    }
    .contato-item i {
        font-size: 1.2rem;
        min-width: 22px;
    }
    .contato-item span {
        font-size: 1.05rem;
        color: var(--text-dark);
        word-break: break-all;
    }
}
/* Ícones sociais na seção de contato (mobile only) */
.contato-social-mobile {
    display: none;
}
@media (max-width: 700px) {
    .contato-social-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        margin-top: 1.3rem;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    .contato-social-mobile a {
        color: var(--primary-pink);
        font-size: 2.6rem;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contato-social-mobile a:hover {
        color: var(--support-gold);
    }
    .contato-item.contato-whatsapp {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* Estilos Principais - Gabriela Interiores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader e controle de carregamento */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Tipografia - Hierarquia de Fontes */
/* Fonte Principal: Quiche Sans Thin - Para títulos e destaques */
/* Fonte Secundária: Brother 1816 Book - Para corpo de texto e legibilidade */
/* Fonte de Apoio: Thank You Regular - Para elementos decorativos e pessoais */

/* Classes utilitárias para tipografia */
.font-primary {
    /* font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif; */
}

.font-secondary {
    /* font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; */
}

.font-decorative {
    /* font-family: 'Thank You Regular', 'Open Sans', sans-serif; */
}

/* Citações e elementos decorativos */
.quote {
    /* font-family: 'Thank You Regular', 'Open Sans', sans-serif; */
    font-style: italic;
    color: var(--text-medium);
}

.signature {
    /* font-family: 'Thank You Regular', 'Open Sans', sans-serif; */
    color: var(--support-gold);
}

body {
    /* font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    display: flex;
    min-height: 100vh;
}

/* Scroll personalizado para toda a página */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(230, 41, 135, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-accent));
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-accent), var(--support-gold));
    transform: scale(1.1);
}

/* Scroll para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) rgba(230, 41, 135, 0.1);
}

/* Esconder URL no hover dos links das redes sociais */
.sidebar-social-compact a,
.sidebar-social-expanded a {
    text-decoration: none !important;
    position: relative;
}

/* Método mais eficaz para esconder URLs */
.sidebar-social-compact a::before,
.sidebar-social-expanded a::before {
    content: attr(href);
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Alternativa usando JavaScript será aplicada */
.sidebar-social-compact a[href],
.sidebar-social-expanded a[href] {
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: linear-gradient(135deg, var(--neutral-yellow), var(--bg-warm-pink));
    background-size: 100% 100%; /* Define que o gradiente deve cobrir a altura e largura */
    background-attachment: fixed; /* Garante que o gradiente seja fixo */
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: visible;
    transition: background-color 0.3s ease, width 0.3s ease;
}

/* Para a sidebar expandida */
.sidebar.expanded {
    width: 280px;
    background: linear-gradient(135deg, var(--neutral-yellow), var(--bg-warm-pink));
    background-size: 100% 100%;
    background-attachment: fixed;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Garante que a sidebar cubra 100% da altura da tela */
    position: relative;
    justify-content: flex-start;
    padding-top: 1rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    box-sizing: border-box;
}

/* Logo */
.sidebar-logo {
    position: fixed;
    top: -28px;
    left: -29px;
    z-index: 1001;
    background: transparent;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar-logo .logo {
    /* font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif; */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    text-align: center;
}

.logo-image {
    max-width: 120px;
    max-height: 120px;
    width: 80;
    height: 80;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

/* Menu Button */
.sidebar-menu-btn {
    margin-top: 6rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--charcoal);
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.sidebar-menu-btn:hover {
    transform: scale(1.1);
    border-radius: 10px;
}

.menu-text {
    /* font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; */
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    transform: rotate(-90deg);
    white-space: nowrap;
    transform-origin: center;
}

/* Name Button */
.sidebar-name-btn {
    margin-top: 8rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    color: var(--charcoal);
    transition: all 0.3s ease;
    padding: 0.5rem;
    flex-shrink: 0;
}

.sidebar-name-btn img.name-icon {
    width: 40px;
    height: 40px;
    margin-top: 0.5rem;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.sidebar-name-btn:hover {
    transform: scale(1.1);
    border-radius: 10px;
}

.sidebar-name-btn img {
    width: 60px;
    height: 60px;
    margin-top: 3.5rem;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    filter: none;
}

.name-text {
    /* font-family: 'Thank You Regular', 'Open Sans', sans-serif; */
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
    transform: rotate(-90deg);
    white-space: nowrap;
    transform-origin: center;
    color: var(--charcoal);
}

/* Spacer para melhor distribuição */
.sidebar-spacer {
    flex: 1;
    min-height: 2rem;
}

/* Social Icons Compact */
.sidebar-social-compact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
    padding: 0 0.4rem;
    align-items: center;
}

.social-row {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    width: 100%;
}

.sidebar-social-compact a {
    color: var(--charcoal);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.sidebar-social-compact a:hover {
    background-color: var(--support-gold);
    color: var(--white);
    transform: scale(1.1);
}

/* Expanded Menu */
.sidebar-nav-expanded {
    position: absolute;
    top: 0;
    left: 80px;
    width: 200px;
    height: 100vh;
    background: linear-gradient(135deg, var(--neutral-yellow), var(--bg-warm-pink));
    background-size: 100% 100%;
    padding: 6rem 1rem 2rem 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}

.sidebar.expanded .sidebar-nav-expanded {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.sidebar-nav-expanded .nav-menu {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.sidebar-nav-expanded .nav-menu li {
    margin-bottom: 0;
}

.sidebar-nav-expanded .nav-menu a {
    font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; /* Fonte secundária para legibilidade */
    display: block;
    color: var(--charcoal);
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav-expanded .nav-menu a:hover,
.sidebar-nav-expanded .nav-menu a.active {
    background-color: var(--primary-cta);
    color: var(--white);
    transform: translateX(5px);
}

/* Botão Fechar Menu Expandido */
.sidebar-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.sidebar-close-btn:hover {
    background: var(--primary-cta);
    transform: scale(1.1);
}

.sidebar-close-btn i {
    font-size: 1.2rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.sidebar-close-btn:hover i {
    color: var(--white);
}

/* Social Icons Expanded */
.sidebar-social-expanded {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.sidebar-social-expanded a {
    color: var(--charcoal);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    flex-shrink: 0;
}

.sidebar-social-expanded a:hover {
    background-color: var(--support-gold);
    color: var(--white);
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    margin-left: 80px;
    flex: 1;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.sidebar.expanded + .main-content {
    margin-left: 280px;
}

/* Hide compact elements when expanded */
.sidebar.expanded .sidebar-name-btn .name-text,
.sidebar.expanded .sidebar-menu-btn .menu-text {
    opacity: 0;
}

.sidebar.expanded .sidebar-name-btn img {
    opacity: 0;
}

.sidebar.expanded .sidebar-social-compact {
    opacity: 0;
    visibility: hidden;
}

/* Garantir que a imagem esteja visível no estado normal */
.sidebar:not(.expanded) .sidebar-name-btn img {
    opacity: 1;
    display: block;
}

/* Header - Removido pois agora é sidebar */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--neutral-cream), var(--neutral-peach));
    padding: 0;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    position: relative;
    overflow: hidden;
}

/* Decorações infantis flutuantes */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.toy-decoration {
    position: absolute;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.toy-decoration i {
    font-size: 2rem;
    color: var(--primary-cta);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.toy-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.toy-2 {
    top: 20%;
    left: 75%;
    animation-delay: 1s;
}

.toy-3 {
    top: 35%;
    left: 10%;
    animation-delay: 2s;
}

.toy-4 {
    top: 15%;
    left: 45%;
    animation-delay: 3s;
}

.toy-5 {
    top: 45%;
    right: 15%;
    animation-delay: 4s;
}

.toy-6 {
    top: 60%;
    left: 25%;
    animation-delay: 5s;
}

.toy-7 {
    top: 70%;
    left: 60%;
    animation-delay: 1.5s;
}

.toy-8 {
    top: 25%;
    left: 85%;
    animation-delay: 2.5s;
}

.toy-9 {
    top: 65%;
    left: 40%;
    animation-delay: 3.5s;
}

.toy-10 {
    top: 80%;
    left: 20%;
    animation-delay: 4.5s;
}

.toy-11 {
    top: 40%;
    left: 5%;
    animation-delay: 0.5s;
}

.toy-12 {
    top: 55%;
    left: 80%;
    animation-delay: 1.2s;
}

.toy-13 {
    top: 12%;
    left: 65%;
    animation-delay: 2.8s;
}

.toy-14 {
    top: 75%;
    left: 75%;
    animation-delay: 3.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

/* Alternando cores dos ícones */
.toy-2 i, .toy-4 i, .toy-6 i, .toy-8 i, .toy-10 i, .toy-12 i, .toy-14 i {
    color: var(--secondary-accent);
}

.toy-3 i, .toy-5 i, .toy-7 i, .toy-9 i, .toy-11 i, .toy-13 i {
    color: var(--support-gold);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif; /* Fonte principal para título de destaque */
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-cta);
    text-align: center;
    min-height: 3.6rem;
    line-height: 1.2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 3rem;
    align-items: start;
    height: 60vh;
}

.hero-left {
    text-align: left;
    padding-right: 2rem;
}

.hero-left p {
    font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; /* Fonte secundária para corpo de texto */
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.8;
    min-height: 8rem;
}

.hero-divider {
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        var(--support-gold) 0px,
        var(--support-gold) 10px,
        transparent 10px,
        transparent 20px
    );
    margin: 0 auto;
}

.hero-right {
    /* Espaço reservado para conteúdo futuro */
    padding-left: 2rem;
}

.btn-primary {
    font-family: 'Thank You Regular', 'Open Sans', sans-serif; /* Fonte de apoio para toque pessoal em CTA */
    background-color: var(--primary-cta);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(230, 41, 135, 0.3);
}

.btn-primary:hover {
    background-color: var(--support-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 147, 48, 0.4);
}

/* Container padrão */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Seções */
.section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif; /* Fonte principal para títulos de seção */
    text-align: center;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 3rem;
    color: var(--secondary-accent);
}

/* Grid para portfólio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Ampliação suave nos cards do portfólio ao passar o mouse */
.portfolio-item {
    border-radius: 16px; /* mais quadrado, mas ainda suave */
    border: 2px solid #f3e9e2; /* borda sutil, tom pastel para combinar com o site */
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(230, 41, 135, 0.10);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s, border-color 0.25s;
}

.portfolio-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(230, 41, 135, 0.18);
    border-color: var(--secondary-accent, #e6a15b); /* destaca a borda no hover */
    z-index: 2;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-item-content {
    font-family: 'Brother 1816 Book', 'Open Sans', sans-serif; /* Fonte secundária para conteúdo */
    padding: 1.5rem;
}

.portfolio-item h3 {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif; /* Fonte principal para subtítulos */
    color: var(--secondary-accent);
    margin-bottom: 0.5rem;
}

/* Serviços Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(230, 41, 135, 0.2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-content {
    text-align: left;
}

.service-title {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-subtitle {
    font-family: 'Thank You Regular', 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-includes {
    background: var(--light-pink);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.service-includes h4 {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
}

.service-bonus,
.service-result {
    font-style: italic;
    color: var(--primary-pink);
    font-weight: 600;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(230, 41, 135, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

/* Modal dos Serviços */
.service-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.service-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.service-modal-header h2 {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif;
    color: var(--primary-pink);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-modal-close:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
}

.service-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Scroll personalizado para o modal */
.service-modal-body::-webkit-scrollbar {
    width: 8px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: rgba(230, 41, 135, 0.1);
    border-radius: 10px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-accent));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-accent), var(--support-gold));
    transform: scale(1.1);
}

/* Scroll para Firefox */
.service-modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-pink) rgba(230, 41, 135, 0.1);
}

.service-modal-image {
    text-align: center;
    margin-bottom: 2rem;
}

.service-modal-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(230, 41, 135, 0.3);
}

.service-modal-subtitle {
    font-family: 'Thank You Regular', 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-accent);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.service-modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-modal-description p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-modal-description .service-includes {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.service-modal-description .service-includes h4 {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-modal-description .service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-modal-description .service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-modal-description .service-includes li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.service-modal-description .service-bonus,
.service-modal-description .service-result {
    font-style: italic;
    color: var(--primary-pink);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(230, 41, 135, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    font-size: 1.05rem;
}

/* Animações do Modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from { 
        transform: translateY(0);
        opacity: 1;
    }
    to { 
        transform: translateY(50px);
        opacity: 0;
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .service-modal {
        padding: 1rem;
    }
    
    .service-modal-content {
        max-height: 95vh;
    }
    
    .service-modal-header {
        padding: 1.5rem 1.5rem 1rem;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-radius: 20px 20px 0 0;
    }
    
    .service-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .service-modal-body {
        padding: 1.5rem;
    }
    
    .service-modal-image img {
        width: 150px;
        height: 150px;
    }
    
    .service-modal-subtitle {
        font-size: 1.1rem;
    }
    
    .service-modal-description {
        font-size: 1rem;
    }
    
    .service-modal-description .service-includes {
        padding: 1.5rem;
    }
    
    .service-modal-description .service-includes h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-modal-header {
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-radius: 20px 20px 0 0;
    }
    
    .service-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-modal-image img {
        width: 120px;
        height: 120px;
    }
    
    .service-modal-subtitle {
        font-size: 1rem;
    }
}

/* Responsividade - Sistema Completo de Breakpoints */

/* Extra Small devices (phones, 320px and up) */
@media (max-width: 480px) {
    .mobile-header {
        height: 55px;
    }
    
    .mobile-logo-image {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 55px;
    }
    
    .hero {
        padding-top: 5rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        height: auto;
    }
    
    .hero-left {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-left p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-right {
        padding-left: 0;
        justify-content: center;
    }
    
    .hero-decorations {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .service-includes {
        padding: 1rem;
    }
    
    .portfolio-item-content {
        padding: 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
}

/* Small devices (phones, 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-header {
        height: 60px;
    }
    
    .mobile-logo-image {
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 60px;
    }
    
    .hero {
        padding-top: 6rem;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
    }
    
    .hero-left {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-left p {
        font-size: 1rem;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-right {
        padding-left: 0;
        justify-content: center;
    }
    
    .hero-decorations {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-image {
        width: 130px;
        height: 130px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .portfolio-item-content {
        padding: 1.5rem;
    }
}

/* Medium devices (tablets, 769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar.expanded {
        width: 250px;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .sidebar.expanded + .main-content {
        margin-left: 250px;
    }
    
    .logo-image {
        max-width: 100px;
        max-height: 100px;
    }
    
    .sidebar-logo {
        top: -25px;
        left: -25px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-left p {
        font-size: 1.1rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr 2px 1fr;
        gap: 2.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-nav-expanded {
        width: 180px;
        padding: 5rem 0.8rem 2rem 0.8rem;
    }
    
    .sidebar-social-compact a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .sidebar-social-expanded a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Large devices (desktops, 1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 2.8rem;
    }
    
    .hero-left p {
        font-size: 1.15rem;
    }
    
    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
}

/* Extra Large devices (large desktops, 1441px and up) */
@media (min-width: 1441px) {
    .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 3.2rem;
    }
    
    .hero-left p {
        font-size: 1.3rem;
    }
    
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
    
    .sidebar-nav-expanded {
        width: 220px;
        padding: 6rem 1.2rem 2rem 1.2rem;
    }
    
    .sidebar-social-expanded a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-left p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .sidebar-menu-btn {
        margin-top: 4rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-name-btn {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

/* Menu toggle para mobile - Melhorado */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: var(--primary-cta);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--secondary-accent);
    transform: scale(1.05);
}

/* Mostrar menu toggle apenas em telas pequenas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        top: 15px;
        right: 15px;
        padding: 8px;
        font-size: 1rem;
    }
}

/* Ajustes para telas ultrawide (2560px+) */
@media (min-width: 2560px) {
    .hero h1 {
        font-size: 4rem;
        margin-bottom: 4rem;
    }
    
    .hero-left p {
        font-size: 1.5rem;
    }
    
    .container {
        max-width: 1800px;
        padding: 0 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 4rem;
    }
    
    .sidebar {
        width: 100px;
    }
    
    .sidebar.expanded {
        width: 320px;
    }
    
    .main-content {
        margin-left: 100px;
    }
    
    .sidebar.expanded + .main-content {
        margin-left: 320px;
    }
    
    .logo-image {
        max-width: 140px;
        max-height: 140px;
    }
    
    .sidebar-nav-expanded {
        width: 220px;
        padding: 7rem 1.5rem 2rem 1.5rem;
    }
    
    .sidebar-social-expanded a {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* Ajustes para melhor fluidez */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Transições suaves para responsividade */
.hero h1,
.hero-left p,
.section-title,
.portfolio-item,
.sidebar,
.main-content {
    transition: all 0.3s ease;
}

/* Ajuste para telas de alta densidade (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .toy-decoration i {
        text-rendering: optimizeLegibility;
    }
}

/* Ajustes para modo escuro do sistema */
@media (prefers-color-scheme: dark) {
    /* Manter design original, mas preparar para futuras implementações */
    .hero-decorations {
        opacity: 0.8;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .toy-decoration {
        animation: none !important;
    }
    
    .hero-decorations {
        display: none;
    }
}

/* Ajustes para impressão */
@media print {
    .sidebar,
    .hero-decorations,
    .menu-toggle,
    .back-button {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- RESPONSIVIDADE FLEXBOX PARA SEÇÕES SOBRE E CONTATO --- */
.sobre-grid, .contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
  .sobre-grid, .contato-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .sobre-grid, .contato-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .sobre-grid > div, .contato-grid > div {
    width: 100%;
    min-width: 0;
  }
}

/* Ajuste do formulário para mobile */
@media (max-width: 600px) {
  form {
    padding: 1rem !important;
  }
}

/* --- ESTILOS PARA SEÇÃO SOBRE --- */
.sobre-titulo {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sobre-paragrafo {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sobre-destaque {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 1.1rem;
}

.sobre-imagem {
    text-align: center;
}

.sobre-icone img {
    width: 300px;
    height: 300px;
    background: var(--light-pink);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ESTILOS PARA SEÇÃO SERVIÇOS --- */
.servicos-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.servicos-descricao {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Carrossel de Serviços - Layout e Destaques */
.servicos-carousel-outer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.servicos-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 420px;
}
.servicos-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  overflow: visible;
  position: relative;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  min-height: 400px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(230,41,135,0.10);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1), box-shadow 0.4s, opacity 0.4s, z-index 0.4s;
  cursor: pointer;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  min-width: 320px;
  max-width: 420px;
  min-height: 340px;
  max-height: 420px;
  margin: 0 0.5rem;
}
.service-card.active {
  transform: scale(1.18) translateY(-18px);
  box-shadow: 0 8px 32px rgba(230,41,135,0.18), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  min-width: 400px;
  max-width: 520px;
}
.service-card.left, .service-card.right {
  transform: scale(0.92) translateY(12px);
  opacity: 0.7;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.service-card:not(.active):not(.left):not(.right) {
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.carousel-btn {
  background: #fff;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(230,41,135,0.08);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-btn-prev {
  left: -30px;
}
.carousel-btn-next {
  right: -30px;
}
.carousel-btn:hover {
  background: var(--primary-pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,41,135,0.15);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
.carousel-indicators .indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-pink);
  box-shadow: 0 2px 8px rgba(230,41,135,0.08);
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.carousel-indicators .indicator.active {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
}
.carousel-pause {
  background: #fff;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(230,41,135,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-pause.paused {
  background: var(--primary-pink);
  color: #fff;
}

@media (max-width: 899px) {
  .servicos-carousel-wrapper {
    min-height: 320px;
  }
  .service-card {
    min-width: 90vw;
    max-width: 98vw;
    min-height: 260px;
    max-height: 340px;
  }
  .service-card.active {
    min-width: 98vw;
    max-width: 100vw;
  }
  .carousel-btn-prev {
    left: -18px;
  }
  .carousel-btn-next {
    right: -18px;
  }
}

/* --- ESTILOS PARA SEÇÃO CONTATO --- */
.contato-titulo {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.contato-descricao {
    margin-bottom: 2rem;
}

.contato-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contato-item i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    min-width: 20px;
}

.contato-whatsapp .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(90deg, var(--primary-pink), var(--support-gold));
    color: #fff;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(230, 41, 135, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 1.2rem;
    border: none;
}
.contato-whatsapp .whatsapp-link i {
    font-size: 1.5rem;
    color: #fff;
}
.contato-whatsapp .whatsapp-link:hover, .contato-whatsapp .whatsapp-link:focus {
    background: linear-gradient(90deg, var(--support-gold), var(--primary-pink));
    color: #fff;
    box-shadow: 0 4px 18px rgba(230, 41, 135, 0.18);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}
@media (max-width: 700px) {
    .contato-whatsapp .whatsapp-link {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
    }
    .contato-whatsapp .whatsapp-link i {
        font-size: 1.2rem;
    }
}

.contato-formulario {
    width: 100%;
}

.formulario-contato {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.formulario-titulo {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.formulario-grupo {
    margin-bottom: 1rem;
}

.formulario-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.formulario-input,
.formulario-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.formulario-textarea {
    resize: vertical;
    min-height: 100px;
}

.formulario-botao {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* --- RESPONSIVIDADE PARA NOVOS ELEMENTOS --- */
@media (max-width: 900px) {
    .sobre-icone {
        width: 250px;
        height: 250px;
    }
    
    .sobre-icone i {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .sobre-icone {
        width: 200px;
        height: 200px;
    }
    
    .sobre-icone i {
        font-size: 2.5rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .formulario-contato {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sobre-icone {
        width: 150px;
        height: 150px;
    }
    
    .sobre-icone i {
        font-size: 2rem;
    }
    
    .formulario-contato {
        padding: 1rem;
    }
    
    .servicos-intro {
        margin-bottom: 2rem;
    }
    
    .servicos-descricao {
        font-size: 1rem;
    }
}

/* --- HERO CUSTOM SLIDESHOW E LAYOUT --- */
.custom-hero-layout {
    display: grid;
    grid-template-columns: 2fr 60px 1.2fr;
    gap: 2rem;
    align-items: center;
    height: 60vh;
    min-height: 350px;
}
.hero-slideshow {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent; /* Remover sombra e fundo */
    border-radius: 24px;
    box-shadow: none;
    overflow: hidden;
    min-height: 350px;
    max-height: 350px;
}
.hero-slideshow img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    /* Remover sombra */
    box-shadow: none;
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 0.7s;
    background: transparent;
}
.hero-slideshow img.active {
    opacity: 1;
    z-index: 2;
}
.slideshow-loading {
    color: var(--primary-pink);
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}
.hero-divider-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 60px;
}
.hero-divider-svg svg {
    height: 100%;
    width: 60px;
    min-height: 250px;
    max-height: 500px;
    display: block;
}
.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente o conteúdo do lado direito */
    justify-content: center;
    height: 100%;
    text-align: left;
    gap: 2rem;
}
.hero-text-block p {
    font-size: 1.25rem;
    color: var(--text-medium);
    text-align: left;
    max-width: 520px;
}
.fale-conosco-btn {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1.1rem 3rem;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(230, 41, 135, 0.10);
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-accent));
    color: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
    outline: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
}
.fale-conosco-btn:hover, .fale-conosco-btn:focus {
    background: linear-gradient(90deg, var(--support-gold), var(--primary-pink));
    color: #fff;
    box-shadow: 0 8px 28px rgba(230, 41, 135, 0.18);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .custom-hero-layout {
        grid-template-columns: 1.5fr 40px 0.8fr;
        gap: 1.2rem;
        height: auto;
        min-height: 0;
    }
    .hero-slideshow {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }
    .hero-divider-svg svg {
        min-height: 120px;
        width: 40px;
    }
}
@media (max-width: 700px) {
    .custom-hero-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .hero-slideshow {
        width: 100%;
        height: 180px;
        min-height: 180px;
        max-height: 180px;
        margin-bottom: 1rem;
    }
    .hero-divider-svg {
        display: none;
    }
    .hero-text-block {
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
    .hero-text-block p {
        text-align: center;
        font-size: 1rem;
    }
    .fale-conosco-btn {
        margin-top: 1.2rem;
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

/* --- MENU MOBILE SUPERIOR --- */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--neutral-yellow), var(--bg-warm-pink));
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-image {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.mobile-logo-image:hover {
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary-pink);
}

/* Animação do hamburguer */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Overlay do menu mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neutral-yellow), var(--bg-warm-pink));
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-logo img {
    width: 50px;
    height: 50px;
}

.mobile-menu-logo span {
    font-family: 'Quiche Sans Thin', 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--primary-pink);
}

.mobile-nav-menu {
    list-style: none;
    padding: 2rem 1rem;
    margin: 0;
    flex: 1;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem;
    font-family: 'Brother 1816 Book', 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(230, 41, 135, 0.1);
    color: var(--primary-pink);
    transform: translateX(10px);
}

.mobile-social-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-social-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-menu a:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

/* Esconder sidebar em mobile */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 60px;
    }
    
    .hero {
        padding-top: 2rem;
    }
}

/* Botão voltar ao topo - identidade visual */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-coral, #FC7A57);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(252, 122, 87, 0.18);
    transition: all 0.3s cubic-bezier(.4,1,.7,1.2);
    z-index: 1000;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 0.7;
    transform: translateY(0);
}

.back-to-top.show:hover {
    background: var(--primary-pink, #E62987);
    color: #fff;
    opacity: 1;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(230, 41, 135, 0.25);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.03);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

:root {
    --primary-coral: #FC7A57;
    --primary-coral-dark: #E5653D;
    --primary-pink: #E62987;
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1rem 0;
    margin-top: 0;
    border-top: 3px solid var(--primary-pink);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    /* Aplicar margem apenas ao conteúdo */
    margin-left: 50px;
    margin-right: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 3.5rem;
    width: auto;
    margin-right: 0rem;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo .footer-icon {
    color: var(--support-gold);
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.footer-slogan {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-right {
    text-align: right;
    font-size: 1rem;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    line-height: 1;
}

.footer-city {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: -0.2rem;
    margin-left: 0;
    line-height: 1;
}

@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
        /* Manter margem no mobile também */
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .footer-left, .footer-right {
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        margin-top: 0.7rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    
    .footer-city {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
  .sidebar-logo {
    display: none !important;
  }
}