:root {
    --color-primary: #0a6cff;
    --color-primary-dark: #074fb6;
    --color-secondary: #0c1c39;
    --color-background: #f5f7fb;
    --color-surface: #ffffff;
    --color-muted: #6b7280;
    --color-text: #1f2937;
    --shadow-soft: 0 16px 40px rgba(10, 108, 255, 0.12);
    --shadow-card: 0 18px 34px rgba(17, 47, 78, 0.08);
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding-inline: clamp(1rem, 3vw, 1.8rem);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 28, 57, 0.08);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}

.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.logo {
    color: var(--color-primary);
}

.brand-name {
    color: var(--color-secondary);
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    color: var(--color-muted);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.main-nav .mobile-cta {
    display: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 28, 57, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 800;
}

.nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 108, 255, 0.22);
    font-weight: 600;
    color: var(--color-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(10, 108, 255, 0.18);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: radial-gradient(circle at 30% 30%, rgba(10, 108, 255, 0.12), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(12, 28, 57, 0.14);
    border-radius: 14px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
    box-shadow: 0 18px 32px rgba(12, 28, 57, 0.18);
    transform: translateY(-1px);
    border-color: rgba(10, 108, 255, 0.32);
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(10, 108, 255, 0.4);
    outline-offset: 3px;
}

.menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(10, 108, 255, 0.28);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 108, 255, 0.32);
}

.btn.primary.is-hovered {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(10, 108, 255, 0.34);
}

.btn.primary.is-active {
    transform: translateY(0) scale(0.97);
}

.btn.secondary {
    background: #fff;
    border: 1px solid rgba(10, 108, 255, 0.18);
    color: var(--color-primary);
}

.btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(10, 108, 255, 0.18);
}

.btn.ghost {
    border: 1px solid rgba(12, 28, 57, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
}

.btn.ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(12, 28, 57, 0.12);
}

.hero {
    padding: 6rem 0 5rem;
    background: radial-gradient(circle at top left, rgba(10, 108, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(12, 28, 57, 0.08), transparent 50%);
}

.hero-grid {
    display: grid;
    gap: 3.2rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.45rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero h1 span {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: clamp(1.25rem, 3.2vw, 1.6rem);
    margin-top: 0.5rem;
}

.hero-copy p {
    color: var(--color-muted);
    font-size: 1.08rem;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-highlights {
    list-style: none;
    color: var(--color-muted);
    display: grid;
    gap: 0.55rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 1.2rem;
    background: var(--color-surface);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

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

.section-header h2 {
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    margin-bottom: 0.7rem;
}

.section-header p {
    color: var(--color-muted);
}

.about {
    padding: 4.5rem 0;
}

.about-grid {
    display: grid;
    gap: 2.8rem;
    align-items: start;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
}

.about-copy p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.about-points {
    display: grid;
    gap: 1.2rem;
}

.about-card {
    background: var(--color-surface);
    padding: 1.6rem;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.about-card h3 {
    margin-bottom: 0.6rem;
}

.about-card p {
    color: var(--color-muted);
}

.plans {
    padding: 4.8rem 0;
    background: linear-gradient(135deg, rgba(10, 108, 255, 0.12), rgba(255, 255, 255, 0));
}

.plans-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
    background: var(--color-surface);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
}

.plan-card ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: var(--color-muted);
}

.plan-card ul li::before {
    content: '•';
    color: var(--color-primary);
    margin-right: 0.45rem;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.plan-card.premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), #fffbe8);
    border: 1px solid rgba(255, 201, 102, 0.9);
    box-shadow: 0 24px 48px rgba(207, 165, 75, 0.28);
}

.plan-card.premium::before {
    content: '';
    position: absolute;
    inset: -60% 30% 60% -30%;
    background: radial-gradient(circle, rgba(255, 215, 128, 0.6) 0%, rgba(255, 255, 255, 0) 65%);
    transform: rotate(12deg);
    pointer-events: none;
}

.plan-card.premium h3 {
    color: #9c6c18;
}

.plan-card.premium .plan-price {
    color: #c88b1a;
}

.plan-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd369, #f0a938);
    color: #2e2100;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 20px rgba(210, 150, 40, 0.25);
}

.hardware {
    padding: 4.8rem 0;
}

.hardware-wrapper {
    display: grid;
    gap: 2.4rem;
}

.hardware-card {
    background: linear-gradient(150deg, rgba(10, 108, 255, 0.1), rgba(255, 255, 255, 0.92));
    border-radius: 24px;
    padding: 1.9rem 2rem 2rem;
    box-shadow: 0 28px 46px rgba(12, 28, 57, 0.14);
    position: relative;
    overflow: hidden;
}

.hardware-card::after {
    content: '';
    position: absolute;
    inset: auto -18% 64% 68%;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 65%);
    pointer-events: none;
}

.hardware-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: baseline;
    margin-bottom: 1.6rem;
}

.hardware-card h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.hardware-card .hardware-summary {
    color: var(--color-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.hardware-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border-radius: 18px;
    overflow: hidden;
}

.hardware-table th,
.hardware-table td {
    padding: 1rem 1.3rem;
    text-align: left;
    border-bottom: 1px solid rgba(12, 28, 57, 0.08);
}

.hardware-table th {
    background: linear-gradient(135deg, rgba(12, 28, 57, 0.08), rgba(10, 108, 255, 0.12));
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.hardware-table tbody tr:last-child td {
    border-bottom: none;
}

.hardware-table tbody tr {
    transition: background 0.18s ease;
}

.hardware-table tbody tr:hover {
    background: rgba(10, 108, 255, 0.04);
}

.hardware-table td:first-child {
    font-weight: 600;
    color: var(--color-secondary);
}

.hardware-table td.total-cell {
    text-align: center;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    background: rgba(10, 108, 255, 0.12);
    color: var(--color-primary);
}

.price-chip.is-install {
    background: rgba(12, 28, 57, 0.08);
    color: var(--color-secondary);
}

.price-chip.is-total {
    background: linear-gradient(135deg, #ffd369, #f0a938);
    color: #2e2100;
    box-shadow: 0 8px 18px rgba(210, 150, 40, 0.28);
    min-width: 120px;
    justify-content: center;
}

.hardware-note {
    background: rgba(10, 108, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    color: var(--color-primary);
    font-weight: 600;
}

.additional {
    padding: 4.8rem 0;
    background: var(--color-surface);
}

.additional-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.additional-card {
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    background: linear-gradient(145deg, #f4f7ff, #ffffff);
    display: grid;
    gap: 0.8rem;
}

.additional-card h3 {
    color: var(--color-secondary);
}

.additional-card p {
    color: var(--color-primary);
    font-weight: 600;
}

.additional-detail {
    color: var(--color-muted);
    font-weight: 400;
}

.additional-card ul {
    list-style: none;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.why {
    padding: 4.8rem 0;
}

.why-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.why-card {
    background: var(--color-surface);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 0.6rem;
}

.why-card h3 {
    color: var(--color-secondary);
}

.why-card p {
    color: var(--color-muted);
}

.faq {
    padding: 4.8rem 0;
    background: linear-gradient(135deg, rgba(10, 108, 255, 0.1), rgba(255, 255, 255, 0));
}

.faq-list {
    display: grid;
    gap: 1.2rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.6rem;
    text-align: left;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.6rem 1.3rem;
    color: var(--color-muted);
}

.contact {
    padding: 4.8rem 0;
}

.contact-grid {
    display: grid;
    gap: 2.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: start;
}

.contact-copy p {
    color: var(--color-muted);
}

.contact-phone {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.contact-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 0.9rem;
}

.contact-card p {
    color: var(--color-muted);
}

.contact-list {
    list-style: none;
    color: var(--color-muted);
    display: grid;
    gap: 0.5rem;
}

.footer {
    background: var(--color-secondary);
    color: #fff;
    padding: 3.6rem 0 2.2rem;
}

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

.footer h3,
.footer h4 {
    margin-bottom: 0.8rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.4rem;
}

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
}

.whatsapp-widget {
    position: fixed;
    bottom: 18px;
    right: 24px;
    display: flex;
    align-items: center;
    z-index: 1100;
}

.whatsapp-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 20px 36px rgba(10, 108, 255, 0.32);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-toggle:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 24px 44px rgba(10, 108, 255, 0.34);
}

.whatsapp-toggle:focus-visible {
    outline: 3px solid rgba(10, 108, 255, 0.35);
    outline-offset: 4px;
}

.whatsapp-toggle svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.whatsapp-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: min(320px, 88vw);
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: 0 28px 46px rgba(12, 28, 57, 0.26);
    padding: 1.5rem 1.45rem 1.35rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.whatsapp-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-panel h3 {
    font-size: 1.22rem;
    margin-bottom: 0.25rem;
    color: var(--color-secondary);
}

.whatsapp-panel p {
    color: var(--color-muted);
}

.whatsapp-form {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.95rem;
}

.whatsapp-message {
    width: 100%;
    min-height: 96px;
    border-radius: 16px;
    border: 1px solid rgba(12, 28, 57, 0.14);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.45;
    resize: none;
    background: #f8faff;
    color: var(--color-secondary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-message:focus {
    outline: 3px solid rgba(10, 108, 255, 0.25);
    outline-offset: 2px;
    border-color: rgba(10, 108, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(10, 108, 255, 0.1);
}

.whatsapp-note {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.whatsapp-form .btn {
    width: 100%;
    padding-inline: 1.2rem;
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 20px);
    padding: 0.95rem 1.6rem;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(12, 28, 57, 0.34);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1500;
    font-weight: 500;
}

.toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .topbar .container {
        justify-content: space-between;
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        margin: 0 auto;
        width: min(92vw, 360px);
        background: #fff;
        border-radius: 18px;
        padding: 1.4rem;
        box-shadow: 0 24px 40px rgba(12, 28, 57, 0.18);
        flex-direction: column;
        gap: 1rem;
        z-index: 900;
        opacity: 0;
        transform: translateY(-12px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .main-nav a {
        font-size: 1.05rem;
        color: var(--color-secondary);
        padding: 0.25rem 0.35rem;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .main-nav a:hover {
        background: rgba(10, 108, 255, 0.08);
        color: var(--color-primary);
    }

    .main-nav .mobile-cta {
        display: inline-flex;
        justify-content: center;
        padding: 0.85rem 1.1rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        color: #fff;
        font-weight: 600;
        margin-top: 0.4rem;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding-inline: 1rem;
    }

    .logo-image {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-card,
    .additional-card,
    .why-card,
    .faq-item,
    .contact-card {
        border-radius: 16px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .whatsapp-widget {
        bottom: 12px;
        right: 18px;
        width: auto;
    }

    .whatsapp-panel {
        width: min(300px, 92vw);
        padding: 1.3rem 1.2rem 1.1rem;
    }

    .whatsapp-message {
        min-height: 88px;
    }

    .hardware-wrapper {
        gap: 1.6rem;
    }

    .hardware-card {
        padding: 1.6rem 1.4rem 1.5rem;
    }

    .hardware-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-bottom: 1.2rem;
    }

    .hardware-table {
        display: block;
        width: 100%;
    }

    .hardware-table thead {
        display: none;
    }

    .hardware-table tbody {
        display: grid;
        gap: 1rem;
    }

    .hardware-table tbody tr {
        display: grid;
        gap: 0.55rem;
        padding: 1rem 1.1rem;
        border: 1px solid rgba(12, 28, 57, 0.08);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 12px 26px rgba(12, 28, 57, 0.08);
    }

    .hardware-table td {
        border: none;
        padding: 0;
        font-size: 0.97rem;
    }

    .hardware-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--color-secondary);
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .price-chip {
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.05rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .plan-card,
    .additional-card,
    .contact-card {
        padding: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .plan-price {
        font-size: 1.15rem;
    }

    .contact-copy h2 {
        font-size: 1.9rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }
}
