/* ============================================================
   ZIPWEB — index.css
   Estilos específicos de index.html (hero, metrics, services,
   calculator, process, testimonials, audit, consult-banner)
   ============================================================ */

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 6% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(255, 92, 0, 0.2) 0%, transparent 65%), radial-gradient(ellipse 40% 30% at 85% 90%, rgba(255, 138, 0, 0.09) 0%, transparent 55%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 92, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 92, 0, 0.03) 1px, transparent 1px);
    background-size: 55px 55px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 92, 0, 0.1);
    border: 1px solid rgba(255, 92, 0, 0.3);
    color: var(--orange);
    padding: 0.38rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.5)
    }

    50% {
        box-shadow: 0 0 0 7px rgba(0, 229, 160, 0)
    }
}

h1 {
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.2rem;
    color: var(--white);
}

h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 2.2rem;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    color: var(--white);
    padding: 0.95rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.98rem;
    box-shadow: 0 0 35px var(--orange-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(255, 92, 0, 0.4);
}

.btn-hero-sec {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    padding: 0.95rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: border-color 0.2s, background 0.2s;
}

.btn-hero-sec:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
}

.consult-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.25);
    color: var(--success);
    padding: 0.38rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.2s;
}

.consult-pill:hover {
    background: rgba(0, 229, 160, 0.15);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--orange);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CONSULT BANNER */
.consult-banner {
    background: linear-gradient(90deg, rgba(0, 229, 160, 0.08), rgba(0, 229, 160, 0.04));
    border: 1px solid rgba(0, 229, 160, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 6% 0;
}

.consult-banner-icon {
    font-size: 2rem;
}

.consult-banner .cb-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.consult-banner .cb-text p {
    font-size: 0.85rem;
    color: var(--muted);
}

.consult-banner .cb-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-consult-green {
    background: var(--success);
    color: #080808;
    padding: 0.7rem 1.8rem;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-consult-green:hover {
    opacity: 0.88;
}

.cb-note {
    font-size: 0.75rem;
    color: var(--muted);
}

/* METRICS */
.metrics-band {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.8rem 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--orange-soft);
    border: 1px solid rgba(255, 92, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.metric-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.metric-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

/* SERVICES */
.services-section {
    padding: 5rem 6%;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    opacity: 0;
    transition: opacity 0.3s;
}

.svc-card:hover {
    border-color: rgba(255, 92, 0, 0.4);
    transform: translateY(-4px);
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-card.hot {
    border-color: rgba(255, 92, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.07), var(--card));
}

.svc-card.hot::after {
    opacity: 1;
}

.hot-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 0.22rem 0.65rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.svc-card.svc-consult-green {
    border-color: rgba(0, 229, 160, 0.2);
    background: linear-gradient(90deg, rgba(0, 229, 160, 0.08), rgba(0, 229, 160, 0.04));
}

.svc-card.svc-consult-green::after {
    background: var(--success);
}

.svc-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.svc-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.svc-price {
    font-size: 0.8rem;
    color: var(--muted);
}

.svc-price strong {
    color: var(--orange);
    font-size: 1.1rem;
}

.svc-price.free {
    color: var(--success);
    font-weight: 700;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.8rem;
}

/* PROCESS */
.process-section {
    padding: 5rem 6%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.3rem;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 92, 0, 0.09);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    font-family: monospace;
}

.step h3 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

/* TESTIMONIALS */
.testi-section {
    background: var(--dark);
    padding: 5rem 6%;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
}

.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
}

.stars {
    color: var(--orange);
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
}

.testi-text {
    font-size: 0.87rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--white);
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.testi-role {
    font-size: 0.73rem;
    color: var(--muted);
}

/* AUDIT */
.audit-section {
    padding: 5rem 6%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.09), rgba(255, 138, 0, 0.04));
    border-top: 1px solid rgba(255, 92, 0, 0.14);
    border-bottom: 1px solid rgba(255, 92, 0, 0.14);
}

.audit-form {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
}

.audit-form input {
    flex: 1;
    min-width: 190px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.88rem 1.1rem;
    color: var(--white);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}

.audit-form input::placeholder {
    color: var(--muted);
}

.audit-form input:focus {
    border-color: var(--orange);
}

.audit-title {
    margin-bottom: 0.8rem;
}

.audit-subtitle {
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 2rem;
}

.audit-msg-text {
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 0.9rem;
}