/* =============================================
   PROGRESSIVA SOROCABA — Premium CSS
   Paleta: Rose Gold · Blush Pink · Off-White · Dark
   ============================================= */

:root {
    --rose:       #c9748f;
    --rose-light: #e8a0b4;
    --rose-dark:  #a0526a;
    --gold:       #c9a86c;
    --gold-light: #e8d0a0;
    --dark:       #1a0d12;
    --dark-2:     #2d1a22;
    --blush:      #fdf0f4;
    --white:      #ffffff;
    --text:       #3d2030;
    --text-light: #7a5060;
    --border:     #f0d0da;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --shadow-sm: 0 2px 12px rgba(180, 80, 100, 0.1);
    --shadow-md: 0 8px 32px rgba(180, 80, 100, 0.18);
    --shadow-lg: 0 20px 60px rgba(180, 80, 100, 0.22);
    --radius:    16px;
    --trans:     0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* === HEADER === */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
    flex-shrink: 0;
}
.logo-mark { color: var(--rose); font-size: 1rem; }
.logo-city { color: var(--rose); }

.nav {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--trans);
}
.nav a:hover { color: var(--rose); }

.header-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c5e);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform var(--trans), box-shadow var(--trans);
    flex-shrink: 0;
}
.header-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--trans);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    border-top: 1px solid var(--border);
    background: white;
}
.mobile-nav a {
    font-size: 1rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-nav .btn-wa {
    margin-top: 8px;
    text-align: center;
}
.mobile-nav.open { display: flex; }

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c5e);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--trans), box-shadow var(--trans);
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--trans);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-large { padding: 18px 36px; font-size: 1.1rem; }

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c5e);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--trans), box-shadow var(--trans);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }

/* WAB Float */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366, #128c5e);
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 99;
    transition: transform var(--trans);
    animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* === SECTION HELPERS === */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.light { color: white; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(201,116,143,0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-header.light .section-tag { color: var(--gold-light); background: rgba(255,255,255,0.1); }
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201,116,143,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,108,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* === CAROUSEL === */
.carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.carousel-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
.carousel-slide {
    flex: 0 0 25%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,13,18,0.82) 0%,
        rgba(45,26,34,0.70) 50%,
        rgba(61,21,48,0.65) 100%
    );
}
.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.dot.active {
    background: var(--rose-light);
    width: 28px;
    border-radius: 5px;
}

.badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201,116,143,0.2), rgba(201,168,108,0.15));
    border: 1px solid rgba(201,116,143,0.3);
    color: var(--rose-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-content h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
}
.stat { text-align: center; padding: 0 1.5rem; }
.stat:first-child { padding-left: 0; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: white; font-family: var(--font-serif); }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }


/* === DIFERENCIAIS === */
.diferenciais {
    padding: 5rem 0;
    background: var(--blush);
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.diff-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans), box-shadow var(--trans);
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.diff-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.diff-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--dark); }
.diff-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* === SERVIÇOS === */
.servicos { padding: 6rem 0; }
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.servico-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
    box-shadow: var(--shadow-sm);
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--rose-light); }
.servico-card.featured {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.servico-card.featured h3, .servico-card.featured p { color: white; }
.servico-card.featured .servico-lista li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.servico-card.featured .servico-lista li::before { color: var(--rose-light); }

.servico-icon { font-size: 2rem; margin-bottom: 1rem; }
.servico-card h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--dark); }
.servico-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }

.servico-lista {
    list-style: none;
    margin-bottom: 1.5rem;
}
.servico-lista li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.servico-lista li::before { content: '✓'; color: var(--rose); font-weight: 700; flex-shrink: 0; }

.btn-servico {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: transform var(--trans), box-shadow var(--trans);
    margin-top: auto;
}
.btn-servico:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160,82,106,0.4); }
.servico-card.featured .btn-servico {
    background: linear-gradient(135deg, var(--rose-light), var(--rose));
}

/* === RESULTADOS — GALERIA === */
.resultados {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.galeria-resultados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-bottom: 3rem;
}
.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.galeria-item.galeria-destaque {
    grid-row: span 2;
    aspect-ratio: unset;
}
.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1.5rem 1rem 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.galeria-item:hover .galeria-label { opacity: 1; }

.galeria-cta {
    text-align: center;
}
.resultado-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.r-stat-h strong {
    display: block;
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--rose-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.r-stat-h span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }


.r-stat span { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* === DEPOIMENTOS === */
.depoimentos { padding: 6rem 0; background: var(--blush); }
.dep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.dep-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans);
}
.dep-card:hover { transform: translateY(-4px); }
.dep-card.featured-dep {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}
.dep-card.featured-dep p { color: rgba(255,255,255,0.9); }
.dep-card.featured-dep .dep-autor strong { color: white; }
.dep-card.featured-dep .dep-autor span { color: rgba(255,255,255,0.7); }
.dep-card.featured-dep .dep-avatar { background: rgba(255,255,255,0.2); color: white; }

.dep-stars { color: #f4a261; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.dep-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 1.5rem; font-style: italic; }
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light), var(--rose));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dep-autor strong { display: block; font-size: 0.9rem; color: var(--dark); }
.dep-autor span { font-size: 0.8rem; color: var(--text-light); }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    padding: 5rem 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-text h2 { font-family: var(--font-serif); font-size: 2rem; color: white; margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-banner .btn-primary {
    background: white;
    color: var(--rose-dark);
    flex-shrink: 0;
}
.cta-banner .btn-primary i { color: #25d366; }
.cta-banner .btn-primary:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* === FAQ === */
.faq { padding: 6rem 0; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--trans);
}
.faq-q:hover { color: var(--rose); }
.faq-q span {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--rose);
    flex-shrink: 0;
    transition: transform var(--trans);
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
    padding-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* === CONTATO === */
.contato { padding: 6rem 0; background: var(--blush); }
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.contato-info .section-tag { margin-bottom: 1rem; }
.contato-info h2 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 2rem; color: var(--dark); }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    font-size: 1.2rem;
    color: var(--rose);
    margin-top: 3px;
    width: 24px;
    flex-shrink: 0;
}
.info-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.info-item span, .info-item a { font-size: 1rem; color: var(--dark); }
.info-item a:hover { color: var(--rose); }
.contato-info .btn-primary { margin-top: 2rem; }

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 24px 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand .logo-name { font-family: var(--font-serif); font-size: 1.3rem; color: white; display: block; margin-bottom: 1rem; margin-top: 0.5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links h4 { color: white; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-links a, .footer-links span { font-size: 0.85rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--rose-light); }

.footer-social h4 { color: white; font-size: 0.9rem; margin-bottom: 1rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    transition: all var(--trans);
}
.social-links a:hover { background: var(--rose); color: white; transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--rose-light); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content { padding: 100px 24px 60px; }
    .resultados-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
    .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav, .header-wa { display: none; }
    .menu-btn { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .stat-divider { display: none; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-inner .btn-primary { width: 100%; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
