/* ==========================================================================
   Lavanderia Express - Redesign Baseado nas Artes de Referência
   ========================================================================== */

:root {
    --primary-blue: #004b93;
    --primary-dark: #002e60;
    --accent-cyan: #00a8e8;
    --light-cyan: #eaf6ff;
    --whatsapp-green: #00c853;
    --whatsapp-hover: #00a844;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-gradient: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --shadow-soft: 0 10px 30px rgba(0, 75, 147, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 75, 147, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center {
    text-align: center !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 75, 147, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 75, 147, 0.35);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 80%;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.hero {
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    background: url('infos/referenciasdeid/bg.png') no-repeat center center / cover;
    overflow: hidden;
}

/* Ambient Water Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 168, 232, 0.3);
    background: rgba(0, 168, 232, 0.08);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(0, 168, 232, 0.1);
    animation: float-bubble linear infinite;
    bottom: -60px;
    z-index: 1;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    filter: blur(1px);
}

@keyframes float-bubble {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-700px) translateX(30px); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Coluna Principal da Hero */
.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1.5px solid var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.12);
    width: fit-content;
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-cyan);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.location-badge span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
}

.main-title span {
    color: var(--accent-cyan);
}

.main-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card de Preço da Hero (Estilo Arte de Referência) */
.price-hero-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 24px 30px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 75, 147, 0.25);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-card-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2f1ff;
}

.price-card-body {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-card-body .currency {
    font-size: 2rem;
    font-weight: 700;
}

.price-card-body .amount {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.price-card-body .unit-pill {
    background: var(--accent-cyan);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 5px;
}

/* Lista de Especificações (Cards em Pílulas) */
.spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.spec-item:hover {
    border-color: var(--accent-cyan);
    transform: translateX(4px);
}

.spec-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.spec-text {
    font-size: 1rem;
    color: var(--text-main);
}

.spec-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.spec-note {
    background: #f8fafc;
    border-style: dashed;
}

.spec-note .spec-icon {
    background: var(--light-cyan);
    color: var(--primary-blue);
}

.spec-note .spec-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Box */
.hero-cta-box {
    background: var(--primary-dark);
    border-radius: 24px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 46, 96, 0.3);
    margin-top: 10px;
}

.cta-question {
    font-size: 1.15rem;
    font-weight: 700;
    max-width: 250px;
    line-height: 1.3;
}

.btn-whatsapp-hero {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
}

.btn-whatsapp-hero:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.04);
    color: #ffffff;
}

/* Coluna Direita (Visual Showcase - Roupas Dobradas) */
.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-clothes-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin-top: 40px;
    filter: drop-shadow(0 20px 40px rgba(0, 75, 147, 0.3));
    animation: float 4s ease-in-out infinite;
}

.visual-floating-tag i {
    font-size: 1.4rem;
    color: var(--accent-cyan);
}

.visual-floating-tag span {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Seção Como Funciona */
.process-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.section-kicker {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    flex: 1 1 200px;
    max-width: 250px;
    background: var(--bg-gradient);
    border: 1px solid var(--card-border);
    padding: 30px 22px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-cyan);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 15px rgba(0, 75, 147, 0.3);
}

.process-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Seção Empresas */
.empresas-section {
    padding: 90px 0;
    background: var(--light-cyan);
    text-align: center;
}

.empresas-kicker {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.empresas-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.empresas-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.segmentos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 45px;
}

.segment-pill {
    background: #ffffff;
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 75, 147, 0.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.segment-pill i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.segment-pill:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

.segment-pill:hover i {
    color: #ffffff;
}

.btn-whatsapp-modern {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.35);
}

.btn-whatsapp-modern:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #94a3b8;
    max-width: 380px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-contact h4, .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-cyan);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-content {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .price-card-body .amount {
        font-size: 3.2rem;
    }
    
    .hero-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-question {
        max-width: 100%;
    }
    
    .btn-whatsapp-hero {
        width: 100%;
        justify-content: center;
    }
}
