/* assets/css/style.css */

/* Fonte */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    /* Fundo degradê animado com as cores da Lore Colore */
    background: linear-gradient(-45deg, #FFF2CC, #FFB7B2, #B9D7EA, #D6E5D8, #E2C2C6);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow-x: hidden;
    color: #374151;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Scroll Reveal Class (controlled by JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* assets/css/style.css - Adicione no final */

/* Estilos para o Conteúdo Rico do Modal */
.custom-content h1, .custom-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.custom-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    word-wrap: break-word; /* Garante que não corte texto */
}

.custom-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.custom-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.custom-content strong {
    color: #db2777; /* Rosa escuro para negritos */
}

/* Barra de rolagem bonitinha para o modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #fbcfe8; 
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f472b6; 
}

/* ... código anterior ... */

/* ARQUIVO: assets/css/style.css - CORREÇÕES FINAIS */

/* Garante que o texto do modal quebre linha e não force scroll lateral */
.custom-content {
    word-wrap: break-word;
    overflow-wrap: break-word; /* Moderna */
    white-space: normal;
    max-width: 100%;
}

/* Formatação do conteúdo vindo do Editor Quill */
.custom-content h1 { font-size: 1.5rem; font-weight: 700; color: #1f2937; margin-top: 1rem; }
.custom-content h2 { font-size: 1.25rem; font-weight: 600; color: #374151; margin-top: 0.8rem; }
.custom-content p { margin-bottom: 0.8rem; line-height: 1.6; color: #4b5563; }
.custom-content ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.custom-content ol { list-style-type: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.custom-content strong, .custom-content b { color: #db2777; font-weight: 700; }
.custom-content em, .custom-content i { font-style: italic; color: #6b7280; }

/* --- ADIÇÕES PARA A PÁGINA DE SERVIÇOS --- */

/* Card de Serviço com Gradiente na Borda ao Hover */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px -5px rgba(236, 72, 153, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

/* Ícone do Serviço com Fundo Animado */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 10;
}

.service-card:hover .service-icon-wrapper {
    transform: rotateY(180deg);
}
.service-card:hover .service-icon-wrapper i {
    transform: rotateY(-180deg); /* Mantém o ícone virado pra frente */
}

/* Linha do Tempo (Processo) */
.timeline-step {
    position: relative;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.5);
    z-index: 0;
}

/* --- ADIÇÕES PARA PÁGINA QUEM SOMOS --- */

/* Importando fonte manuscrita para assinatura */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

.font-signature {
    font-family: 'Dancing Script', cursive;
}

/* Efeito Polaroid Flutuante */
.polaroid-wrapper {
    position: relative;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    transition: all 0.5s ease;
    transform: rotate(-3deg);
}

.polaroid-wrapper:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 20;
}

/* Variação para segunda foto */
.polaroid-wrapper.reverse {
    transform: rotate(3deg);
}
.polaroid-wrapper.reverse:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
}

/* Fundo com Textura Sutil (Pattern) */
.bg-pattern-dots {
    background-image: radial-gradient(#db2777 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* Coração Pulsante */
.heart-beat {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}