﻿:root {
    --bg: #f7fbff;
    --text: #15202b;
    --muted: #5a6876;
    --brand: #e22121;
    --brand2: #0d5bff;
    --dark: #08111f;
    --card: #ffffff;
    --line: #e6edf5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 7%;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand img {
    height: 58px;
    width: auto;
}

.nav{
    display:flex;
    align-items:center;
    gap:30px;
}

/* LINKS MENU */
.nav a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:16px;
}

.dropbtn{
  background:none;
  border:none;
  color:#111;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}

.nav a:hover,
.dropbtn:hover{
  color:#0d5bff;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 30px;
}

.section {
    padding: 82px 7%;
    max-width: 1220px;
    margin: auto;
}

.hero {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 42px;
    align-items: center;
    min-height: 78vh;
}

.eyebrow {
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.9rem);
    line-height: 1.02;
    margin: 10px 0 20px;
    color: var(--dark);
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.15;
    margin: 8px 0 18px;
    color: var(--dark);
}

h3 {
    margin: 12px 0 10px;
    font-size: 1.3rem;
}

.lead {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 760px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.primary {
    background: var(--brand);
    color: white;
}

.secondary {
    background: white;
    color: var(--dark);
    border-color: var(--line);
}

.trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--muted);
    font-weight: 700;
}

.hero-card,
.cards article,
.plans article,
.about-card,
.form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 18px 55px rgba(8,17,31,.08);
}

.hero-card {
    padding: 34px;
}

.hero-card ul {
    padding-left: 20px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cards article,
.plans article {
    padding: 28px;
}

.cards span {
    font-size: 2rem;
}

.alt {
    background: linear-gradient(135deg, #fff, #edf5ff);
    border-radius: 36px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.checklist {
    display: grid;
    gap: 12px;
}

.checklist p {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0;
    font-weight: 700;
}

.about {
    max-width: 980px;
}

.about-card {
    padding: 42px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand2);
    margin: .2rem 0;
}

.featured {
    outline: 3px solid rgba(226,33,33,.18);
    transform: translateY(-8px);
}

.contact {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 38px;
}

.form {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.form label {
    font-weight: 800;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #cfd9e5;
    border-radius: 14px;
    padding: 13px;
    font: inherit;
}

.status {
    font-weight: 800;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.google-review {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 30;
    background: #f59e0b;
    color: #111;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 900;
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.google-review:hover,
.whatsapp:hover {
    opacity: .9;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 28px 7%;
    background: var(--dark);
    color: #d7e4f2;
}

@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        right: 7%;
        top: 82px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 18px 55px rgba(8,17,31,.12);
        flex-direction: column;
    }

    .nav.open {
        display: flex;
    }

    .hero,
    .split,
    .contact,
    .grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 6%;
    }

    .featured {
        transform: none;
    }

    .brand img {
        height: 48px;
    }
}
.google-review{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:30;

    background:#f59e0b;
    color:#111;
    text-decoration:none;

    border-radius:999px;
    padding:14px 18px;

    font-weight:900;

    box-shadow:0 12px 36px rgba(0,0,0,.2);

    transition:.3s;
}

.google-review:hover{
    opacity:.9;
    transform:translateY(-2px);
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

/* BOTON PRODUCTS */
.dropbtn{
    cursor:pointer;
}

/* CONTENIDO MENU */
.dropdown-content{
    display:none;
    position:absolute;
    top:35px;
    left:0;

    background:#fff;
    min-width:240px;

    border-radius:10px;
    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,0.2);

    z-index:999;
}

/* ITEMS */
.dropdown-content a{
    display:block;
    padding:14px 18px;
    color:#111;
    border-bottom:1px solid #eee;
}

/* HOVER ITEMS */
.dropdown-content a:hover{
    background:#f5f5f5;
    color:#0d5bff;
}

/* MOSTRAR MENU */
/* .dropdown:hover .dropdown-content{
/*    display:block;
/*}

/* HOVER MENU */
.nav a:hover{
    color:#0d5bff;
}

.dropdown-content.show{
  display:block;
}