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

:root {
    --primary: #10F4A7;
    --primary-dark: #0dd896;
    --primary-light: #3fffc0;
    --secondary: #1e293b;
    --accent: #fbbf24;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10F4A7;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #10F4A7 0%, #3fffc0 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

html {
    scroll-behavior: smooth;
}

/* Âncoras param abaixo do header fixo */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dificulta salvar/arrastar imagens (proteção básica contra cópia) */
img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10F4A7 0%, #0dd896 100%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 2px 10px rgba(16, 244, 167, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 4px 15px rgba(16, 244, 167, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-image {
    height: 72px;
    width: auto;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.btn-primary {
    display: inline-block; /* sem isso o overflow:hidden não corta o brilho, que vaza pro header */
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-dark-header 2s ease-in-out infinite;
}

/* Brilho que atravessa o botão (efeito "vivo") */
.nav-menu a.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btn-shine 2.5s ease-in-out infinite;
}

.nav-menu a.btn-primary::after {
    display: none;
}

.nav-menu a.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes btn-shine {
    0% { left: -100%; }
    60% { left: 160%; }
    100% { left: 160%; }
}

@keyframes pulse-dark-header {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(255, 255, 255, 0.15);
        transform: scale(1.04);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, #5FFFC4 0%, #10F4A7 100%);
    color: white;
    box-shadow:
        0 8px 25px rgba(95, 255, 196, 0.5),
        0 0 40px rgba(95, 255, 196, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6FFFCE 0%, #20FDB1 100%);
    box-shadow:
        0 12px 40px rgba(95, 255, 196, 0.7),
        0 0 60px rgba(95, 255, 196, 0.5),
        inset 0 -3px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.03);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-lg {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    border-radius: 12px;
    font-weight: 800;
    position: relative;
}

.btn-lg::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(95, 255, 196, 0.6) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse-strong 1.5s ease-in-out infinite;
}

.btn-pulse {
    animation: pulse-strong 1.5s ease-in-out infinite;
}

@keyframes pulse-strong {
    0% {
        box-shadow:
            0 0 0 0 rgba(95, 255, 196, 1),
            0 8px 25px rgba(95, 255, 196, 0.5),
            0 0 40px rgba(95, 255, 196, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 0 30px rgba(95, 255, 196, 0),
            0 12px 40px rgba(95, 255, 196, 0.8),
            0 0 80px rgba(95, 255, 196, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(95, 255, 196, 0),
            0 8px 25px rgba(95, 255, 196, 0.5),
            0 0 40px rgba(95, 255, 196, 0.3);
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.3) 70%, transparent 100%),
        url('hero-background.svg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0, 229, 168, 0.1) 0%, transparent 60%);
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* svh considera a barra do navegador no celular (vh corta o botão) */
.hero {
    min-height: 100svh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Telas baixas (notebook pequeno / janela reduzida): compacta o hero para o botão do WhatsApp aparecer sem rolar */
@media (max-height: 850px) {
    .nav {
        padding: 0.75rem 2rem;
    }

    .logo-image {
        height: 54px;
    }

    .hero-content {
        min-height: calc(100svh - 70px);
        padding: 1rem 0;
    }

    .hero-logo {
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }

    .hero-mini-stats {
        margin-top: 1.5rem;
    }

    .mini-stat {
        padding: 0.7rem 1.1rem;
    }

    .mini-stat strong {
        font-size: 1.35rem;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-text-side {
    max-width: 700px;
    text-align: left;
}

.hero-logo {
    height: 110px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}


.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #00D99D;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Selo "online agora" abaixo do CTA (conversão) */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: online-pulse 1.6s ease-in-out infinite;
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Faixa de confiança entre hero e serviços */
.trust-strip {
    background: var(--bg-dark);
    padding: 1.1rem 0;
    border-bottom: 3px solid var(--primary);
}

.trust-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}

.trust-strip span {
    color: white;
    font-weight: 600;
    font-size: 0.9875rem;
    white-space: nowrap;
}

.hero-mini-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 130px;
}

.mini-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #5FFFC4;
    line-height: 1.2;
}

.mini-stat span {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-box {
    background:
        var(--gradient-primary),
        url('data:image/svg+xml,<svg width="800" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="800" height="400" fill="url(%23dots)"/></svg>');
    padding: 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    margin-top: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 200, 150, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: #000;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.cta-box .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px) scale(1.05);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.125rem;
    background: white;
    color: var(--text-dark);
    border: 1px solid rgba(16, 244, 167, 0.4);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(16, 244, 167, 0.15);
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.75px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose */
.why-choose {
    background: white;
    padding: 5rem 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text {
    max-width: 600px;
}

.why-choose-text .section-tag {
    margin-bottom: 1rem;
}

.why-choose-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.why-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-list strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.why-list p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.why-choose-image {
    position: relative;
}

.why-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-photo-grid img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-photo-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 200, 150, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Cards em destaque (foco comercial: box pronta entrega + portas deslizantes) */
.service-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(16, 244, 167, 0.25);
}

.service-card.featured::before {
    transform: scaleX(1);
}

/* Featured já tem borda verde fixa, então o hover precisa de um brilho mais forte para "marcar" */
.service-card.featured:hover {
    border-color: var(--primary-dark);
    box-shadow:
        0 20px 50px rgba(16, 244, 167, 0.45),
        0 0 0 4px rgba(16, 244, 167, 0.15);
    transform: translateY(-12px) scale(1.02);
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gradient-primary);
    color: #064e3b;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(16, 244, 167, 0.4);
}

.services-note {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.75rem 2.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(16, 244, 167, 0.2);
}

.services-note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.services-note-text {
    flex: 1;
}

.services-note-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.services-note-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.services-note-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .services-note {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.75rem 1.25rem;
    }

    .services-note-btn {
        width: 100%;
        white-space: normal;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f4f8;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-info p {
    color: var(--text-gray);
}

/* Diferenciais */
.differentials {
    background: var(--bg-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.differential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.differential-card p {
    color: var(--text-gray);
}

/* Process */
.process {
    background: white;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
}

/* Reviews */
.reviews {
    background: white;
}

/* Avaliações estilo Google (cards fiéis ao widget do Google) */
.greviews-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.greviews-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glogo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.greviews-note {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.2;
}

.gstars {
    color: #FBBC05;
    letter-spacing: 3px;
    font-size: 1.15rem;
}

.greviews-sub {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.greviews-btn {
    background: #1a73e8;
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.greviews-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.35);
}

.greviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.greview {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s;
}

.greview:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #d7dde5;
}

.greview-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.gavatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Foto de perfil real do Google no lugar da inicial */
img.gavatar {
    object-fit: cover;
}

.greview-who {
    flex: 1;
    line-height: 1.3;
    min-width: 0;
}

.greview-who strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9875rem;
}

.greview-who span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.greview .gicon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.greview .gstars {
    font-size: 1.05rem;
}

.greview p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Avaliações extras ficam ocultas até clicar em "Ver todas" */
.hidden-review {
    display: none;
}

.greviews-grid.expanded .hidden-review {
    display: flex;
}

.greviews-more-wrap {
    text-align: center;
    margin-top: 2rem;
}

.greviews-more {
    background: white;
    border: 2px solid var(--primary);
    color: var(--text-dark);
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.25rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 244, 167, 0.2);
}

.greviews-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 244, 167, 0.4);
}

@media (max-width: 640px) {
    .greviews-bar {
        justify-content: center;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .greviews-score {
        flex-direction: column;
        text-align: center;
    }

    .greviews-note {
        justify-content: center;
    }

    .greviews-btn {
        width: 100%;
        text-align: center;
    }

    .greviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .greviews-more {
        width: 100%;
    }

    .insta-inner h3 {
        font-size: 1.25rem;
    }

    .insta-icon {
        width: 54px;
        height: 54px;
    }
}

/* Faixa Instagram */
.insta-band {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3rem 0;
}

.insta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: white;
}

.insta-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.insta-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.insta-inner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.insta-inner p {
    opacity: 0.92;
    font-size: 1rem;
}

.insta-btn {
    background: white;
    color: #cc2366;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.insta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .insta-inner {
        flex-direction: column;
        text-align: center;
    }

    .insta-left {
        flex-direction: column;
    }

    .insta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p,
.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Cores oficiais de cada rede */
.social-link.wa {
    background: #25D366;
}

.social-link.ig {
    background: #E4405F;
}

.social-link.fb {
    background: #1877F2;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    max-width: 350px;
}

.footer-logo {
    height: 170px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-whatsapp {
    margin-top: 1rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-link svg {
    flex-shrink: 0;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

/* Floating Social Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: float-bounce 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    background: #25D366;
    color: white;
}

.whatsapp-float:hover {
    background: #20ba5a;
}

.instagram-float {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
}

.instagram-float:hover {
    background: linear-gradient(135deg, #a044c7 0%, #ff3838 50%, #ffc165 100%);
}

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

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: var(--text-dark);
    }

    .nav-menu a.btn-primary {
        color: white;
    }

    /* iOS Safari não suporta background-attachment: fixed (foto fica com zoom quebrado) */
    .hero {
        background-attachment: scroll;
        background-position: center;
        min-height: auto;
        padding-top: 110px;
    }

    /* No celular o hero cresce só o necessário — botão sempre à vista */
    .hero-content {
        min-height: auto;
        padding: 2rem 0 2.5rem;
    }

    .trust-strip-inner {
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .trust-strip span {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-logo {
        height: 85px;
    }

    .logo-image {
        height: 56px;
    }

    .btn-lg {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        height: 350px;
    }

    .why-photo-grid {
        gap: 0.75rem;
    }

    .why-photo-grid img {
        height: 160px;
        border-radius: 0.75rem;
    }

    .hero-mini-stats {
        gap: 0.75rem;
    }

    .mini-stat {
        flex: 1;
        min-width: 100px;
        padding: 0.75rem 0.5rem;
    }

    .mini-stat strong {
        font-size: 1.375rem;
    }

    .mini-stat span {
        font-size: 0.6875rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .services-grid,
    .portfolio-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .service-card,
    .differential-card,
    .portfolio-item {
        margin-bottom: 1rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .cta-box h3 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .process-step {
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .float-btn {
        width: 55px;
        height: 55px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .portfolio-filters {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    height: 50px;
    font-size: 1.125rem;
}

.portfolio-image {
    cursor: pointer;
    position: relative;
}

.portfolio-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }
}