/* Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #00a8e8;
    --primary-dark: #0077b6;
    --secondary: #0096c7;
    --dark: #0a1128;
    --dark-blue: #1a2332;
    --accent: #00d9ff;
    --text: #e8f4f8;
    --text-muted: #a0b4c0;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 168, 232, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 168, 232, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 168, 232, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 168, 232, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img { height: 40px; transition: var(--transition); }
.logo-img:hover { filter: drop-shadow(0 0 10px var(--primary)); }

.btn-nav {
    background: var(--gradient-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content { text-align: center; z-index: 1; padding: 2rem 0; }

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.quick-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.benefit-item i { font-size: 1.2rem; }

.hero-cta { margin-bottom: 2rem; }

.cta-subtext {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-subtext i { color: #10b981; }

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-glow); }
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.social-proof-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.proof-item {
    background: rgba(0, 168, 232, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    transition: var(--transition);
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-item:hover {
    background: rgba(0, 168, 232, 0.15);
    transform: translateY(-5px);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.proof-small {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.proof-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
section { padding: 6rem 0; }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Problems */
.problems { background: var(--dark-blue); }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: #ef4444;
}

.problem-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-cta {
    text-align: center;
    margin-top: 3rem;
}

.problem-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works { background: var(--dark); }

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-bonus .timeline-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.timeline-content {
    flex: 1;
    background: rgba(0, 168, 232, 0.05);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
    margin-top: 1rem;
}

.timeline-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-list i {
    color: #10b981;
}

/* Packages */
.packages { background: var(--dark-blue); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: rgba(0, 168, 232, 0.05);
    border: 2px solid rgba(0, 168, 232, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-featured {
    background: rgba(0, 168, 232, 0.1);
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-muted);
}

.package-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-detail {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features i {
    color: #10b981;
    margin-top: 0.2rem;
}

.feature-disabled {
    opacity: 0.5;
}

.feature-disabled i {
    color: #6b7280;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.package-guarantee {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.package-guarantee i {
    color: #10b981;
}

/* Savings Calculator */
.savings-calculator {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.calculator-content h3 {
    font-size: 1.8rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.calculator-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.calc-item {
    background: rgba(0, 168, 232, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
}

.calc-item.highlight {
    background: rgba(16, 185, 129, 0.2);
}

.calc-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.calc-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.calc-item.highlight .calc-value {
    color: #10b981;
}

.calculator-conclusion {
    font-size: 1.2rem;
    color: #10b981;
}

/* Testimonials */
.testimonials { background: var(--dark); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(0, 168, 232, 0.05);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-result {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #10b981;
    font-weight: 600;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 168, 232, 0.05);
    border-radius: 15px;
}

.badge-item i {
    font-size: 2rem;
    color: #10b981;
}

/* FAQ */
.faq { background: var(--dark-blue); }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 168, 232, 0.05);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    background: var(--gradient-primary);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    color: white;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    margin-bottom: 2rem;
}

.final-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-section { background: var(--dark); }

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 168, 232, 0.05);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(0, 168, 232, 0.2);
    z-index: -1;
}

.progress-step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 168, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--gradient-primary);
    color: white;
}

.progress-step span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.multi-step-form {
    min-height: 400px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 168, 232, 0.08);
    border: 2px solid rgba(0, 168, 232, 0.3);
    border-radius: 10px;
    color: #e8f4f8;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select option {
    background: #1a2332;
    color: #e8f4f8;
}

.form-group input::placeholder {
    color: rgba(232, 244, 248, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 168, 232, 0.12);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-buttons {
    display: flex;
    gap: 1rem;
}

.form-buttons .btn {
    flex: 1;
}

.btn-next, .btn-prev {
    width: 100%;
}

.form-success {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-whatsapp {
    margin: 2rem 0 1rem;
    color: var(--text-muted);
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 168, 232, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item i {
    color: #10b981;
}

/* Footer */
.footer {
    background: rgba(10, 17, 40, 0.95);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-5px);
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 168, 232, 0.2);
    color: var(--text-muted);
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
}

.whatsapp-text {
    display: none;
    color: white;
    margin-left: 10px;
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .social-proof-badges { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .proof-number {
        font-size: 2rem;
    }
    .proof-small {
        font-size: 1.2rem;
    }
    .packages-grid { grid-template-columns: 1fr; }
    .package-featured { transform: scale(1); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .timeline::before { display: none; }
    .timeline-item { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .quick-benefits { flex-direction: column; gap: 1rem; }
}