/* --- VARIABLES Y RESET --- */
:root {
    --primary-color: #373743;
    --secondary-color: #22c596;
    --text-dark: #333333;
    --text-light: #f4f4f9;
    --bg-light: #ffffff;
    --bg-dark: #373743;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --nav-height: 80px;

    /* === DESIGN SYSTEM TOKENS === */
    --glass-bg:      rgba(255, 255, 255, 0.055);
    --glass-border:  rgba(255, 255, 255, 0.10);
    --glass-blur:    14px;
    --teal:          #22c596;
    --teal-dim:      rgba(34, 197, 150, 0.18);
    --teal-glow:     rgba(34, 197, 150, 0.35);
    --radius-card:   16px;
    --radius-btn:    10px;
    --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-card:   0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.12);
    --shadow-hover:  0 12px 40px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
    --shadow-teal:   0 8px 28px rgba(34,197,150,0.38);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, a.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding  { padding: 100px 0; }
.section-padding2 { padding: 100px 0 0 0; }

.text-center { text-align: center; }
.bg-light    { background-color: #f8f9fa; }
.bg-dark     { background-color: var(--bg-dark); color: var(--text-light); }
.text-white  { color: white; }

/* ============================================================
   BOTONES — microinteracciones estilo React
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        transform  0.25s var(--ease-spring),
        box-shadow 0.25s var(--ease-out),
        background 0.25s ease,
        color      0.25s ease;
    letter-spacing: 0.01em;
    isolation: isolate;
}

/* Ripple layer */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transform: scale(0.6);
    border-radius: inherit;
    transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
}
.btn:active::after {
    opacity: 1;
    transform: scale(1);
    transition: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1aad84 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 10px var(--teal-dim);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-teal);
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}
.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--teal-dim);
}

.btn-block { display: block; width: 100%; }

/* ============================================================
   TÍTULOS DE SECCIÓN — fluid typography con clamp()
   ============================================================ */
.section-title {
    font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.6rem);
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.bg-dark .section-title { color: var(--secondary-color); }

.line-separator {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin-bottom: 30px;
    border-radius: 2px;
}
.line-separator.center  { margin-left: auto; margin-right: auto; }
.separator-light        { background: linear-gradient(90deg, rgba(255,255,255,0.35), transparent); }

/* ============================================================
   HEADER — glassmorphism al hacer scroll
   ============================================================ */
.header {
    height: var(--nav-height);
    background-color: var(--primary-color);
    color: white;
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s;
}
.header.scrolled {
    background: rgba(40, 40, 52, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.accent-point { color: var(--secondary-color); }

.nav-links ul { display: flex; }
.nav-links li  { margin-left: 30px; }

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-contact {
    background: linear-gradient(135deg, var(--secondary-color), #1aad84);
    padding: 8px 20px !important;
    border-radius: var(--radius-btn);
    box-shadow: 0 2px 12px var(--teal-dim);
    transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease !important;
}
.btn-contact:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-teal) !important;
    color: white;
}
.btn-contact::after { display: none; }

.hamburger-menu { display: none; font-size: 1.5rem; cursor: pointer; }

/* ============================================================
   HERO — mesh gradient + noise, sin imagen stock
   ============================================================ */
.hero-section {
    min-height: 100vh;
    background-color: var(--primary-color);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 40%,  rgba(34,197,150,0.13) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 70%,  rgba(34,197,150,0.07) 0%, transparent 50%),
        linear-gradient(rgba(31,31,43,0.82), rgba(35,35,48,0.93)),
        url("others/WhatsApp Image 2025-12-14 at 6.58.16 PM.jpeg");
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: var(--nav-height);
    overflow: hidden;
}

/* Subtle animated grid overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
/* Teal orb top-right */
.hero-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,150,0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: orb-drift 8s ease-in-out infinite alternate;
}
@keyframes orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 40px) scale(1.08); }
}

.hero-overlay { display: none; } /* reemplazado por los gradients de arriba */

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

/* fluid type para H1 */
.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw + 0.5rem, 4rem);
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.text-highlight { color: var(--secondary-color); }

.lead-text {
    font-size: clamp(1rem, 1.2vw + 0.4rem, 1.25rem);
    max-width: 580px;
    margin-bottom: 42px;
    color: rgba(212,212,220,0.85);
    line-height: 1.65;
}

.hero-btns .btn { margin-right: 14px; margin-bottom: 14px; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 50px;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}
.about-image img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.25);
}
.about-text h3 {
    font-size: clamp(1.3rem, 1.5vw + 0.4rem, 1.75rem);
    margin-bottom: 14px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}
.about-text p { margin-bottom: 18px; color: #555; line-height: 1.75; }

/* ============================================================
   SERVICIOS — glassmorphism cards con stagger reveal
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 50px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 36px 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition:
        transform  0.35s var(--ease-spring),
        box-shadow 0.35s var(--ease-out),
        border-color 0.35s ease,
        background 0.35s ease;
    /* stagger via nth-child delay, aplicado por JS con --i */
    transition-delay: calc(var(--stagger, 0) * 60ms);
}

/* Teal gradient edge (top) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Inner glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(34,197,150,0.07), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border-radius: inherit;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(34,197,150,0.18);
    background: rgba(255,255,255,0.09);
    border-color: rgba(34,197,150,0.25);
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.icon-box {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--teal-dim);
    border-radius: 12px;
    transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}
.service-card:hover .icon-box {
    transform: scale(1.12) rotate(-4deg);
    background: rgba(34,197,150,0.28);
}

.service-card h3 {
    font-size: clamp(1.05rem, 1.1vw + 0.3rem, 1.35rem);
    margin-bottom: 12px;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.service-card p { font-size: 0.93rem; color: rgba(200,210,220,0.85); line-height: 1.7; }

/* ============================================================
   CONTACTO — B+C split: panel dark glass + form blanco
   ============================================================ */
.contact-section {
    background: #f0f2f7;
    padding: 100px 0;
}

/* Split container */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
}

/* ── LEFT PANEL ── */
.contact-panel-left {
    background:
        radial-gradient(ellipse 120% 80% at 10% 110%, rgba(34,197,150,0.28) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 90% -10%,  rgba(34,197,150,0.15) 0%, transparent 50%),
        var(--primary-color);
    position: relative;
    overflow: hidden;
}
.contact-panel-left__inner {
    padding: 56px 48px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(34,197,150,0.12);
    border: 1px solid rgba(34,197,150,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 24px;
}
.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2vw + 0.5rem, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.contact-lead {
    font-size: 0.97rem;
    color: rgba(200,210,225,0.75);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 320px;
}

/* Info list */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(34,197,150,0.13);
    border: 1px solid rgba(34,197,150,0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.95rem;
    transition: background 0.25s ease, transform 0.25s var(--ease-spring);
}
.contact-info-item:hover .contact-info-icon {
    background: rgba(34,197,150,0.22);
    transform: scale(1.08);
}
.contact-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 3px;
}
.contact-info-value {
    display: block;
    font-size: 0.92rem;
    color: rgba(230,235,245,0.85);
}

/* Decorative orb */
.contact-orb {
    position: absolute;
    bottom: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,150,0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

/* ── RIGHT PANEL ── */
.contact-panel-right {
    background: #ffffff;
    padding: 56px 48px;
}
.contact-form-header {
    margin-bottom: 32px;
}
.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.contact-form-header p {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* 2-column row for email + phone */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}

/* Form groups — bordered modern style */
.form-group {
    position: relative;
    margin-bottom: 28px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #f8f9fc;
    border: 1.5px solid #e2e5ed;
    border-radius: 10px;
    outline: none;
    transition:
        border-color 0.25s var(--ease-out),
        background   0.25s ease,
        box-shadow   0.25s var(--ease-out);
    resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }

.form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.9rem;
    color: #9ca3af;
    pointer-events: none;
    transition:
        top       0.22s var(--ease-out),
        left      0.22s var(--ease-out),
        font-size 0.22s var(--ease-out),
        color     0.22s ease;
    background: transparent;
    padding: 0 4px;
    border-radius: 4px;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(34,197,150,0.12);
}
/* Floating label — focus or filled */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -9px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    background: #ffffff;
    letter-spacing: 0.03em;
}

/* Submit button icon */
.btn .btn-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    transition: transform 0.25s var(--ease-spring);
}
.btn:hover .btn-icon { transform: translateX(4px) rotate(-10deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
}
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 25px; width: auto; }
.social-icons { margin-top: 20px; }
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    color: white;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
    transition:
        background  0.25s var(--ease-out),
        transform   0.25s var(--ease-spring),
        border-color 0.25s ease;
}
.social-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
}

/* ============================================================
   SCROLL REVEAL — entrada con stagger
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity  0.6s var(--ease-out),
        transform 0.6s var(--ease-out);
    transition-delay: calc(var(--stagger, 0) * 70ms);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   WHATSAPP BUTTON — override visual, funcionalidad intacta
   ============================================================ */
#button-w .wcs_button.wcs_button_circle {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #25d366 0%, #1aad54 100%) !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3) !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.18) !important;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease !important;
    backdrop-filter: blur(8px);
    position: relative;
}
#button-w .wcs_button.wcs_button_circle:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 0 0 6px rgba(37,211,102,0.12) !important;
}
#button-w .wcs_button.wcs_button_circle .fa {
    font-size: 28px !important;
    line-height: 56px !important;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
/* Ping animation ring */
#button-w .wcs_button.wcs_button_circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: wa-ping 2.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes wa-ping {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}
/* Label pill */
#button-w .wcs_button_label {
    background: rgba(37,211,102,0.15) !important;
    color: #1aad54 !important;
    border: 1px solid rgba(37,211,102,0.3) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}
/* Popup header */
#button-w .wcs_popup_header {
    background: linear-gradient(135deg, #1fad5a 0%, #128c3e 100%) !important;
    border-radius: 16px 16px 0 0 !important;
}
/* Popup container */
#button-w .wcs_popup {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 992px) {
    .hero-content h1        { font-size: 2.6rem; }
    .about-grid             { grid-template-columns: 1fr; }
    .contact-split          { grid-template-columns: 1fr; }
    .contact-panel-left__inner { padding: 44px 36px; }
    .contact-panel-right    { padding: 44px 36px; }
    .contact-info-list      { flex-direction: row; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
}

@media (max-width: 768px) {
    .hamburger-menu { display: block; }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        right: -100%;
        background: rgba(40, 40, 52, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - var(--nav-height));
        transition: right 0.4s var(--ease-out);
        text-align: center;
        padding-top: 50px;
    }
    .nav-links.active { right: 0; }
    .nav-links ul     { flex-direction: column; }
    .nav-links li     { margin: 22px 0; }
    .btn-contact      { display: inline-block; }

    .hero-content h1  { font-size: 2.1rem; }
    .section-title    { font-size: 1.85rem; }
    .form-row-2       { grid-template-columns: 1fr; }
    .contact-panel-left__inner,
    .contact-panel-right { padding: 36px 28px; }
}

/* ============================================================
   NOTIFICACIONES DEL FORMULARIO
   ============================================================ */
.form-notification {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
    border-left: 4px solid transparent;
    animation: slideInNotif 0.3s var(--ease-out);
}
@keyframes slideInNotif {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.form-notification ul   { margin: 6px 0 0 16px; padding: 0; }
.form-notification li   { margin-bottom: 2px; }
.form-notification a    { color: inherit; font-weight: 600; }

.form-notification--success {
    background: #edfaf5;
    border-color: #22c596;
    color: #1a6b53;
}
.form-notification--error {
    background: #fff0f0;
    border-color: #e05252;
    color: #8b1a1a;
}
.form-notification--warning {
    background: #fff8ec;
    border-color: #e8a030;
    color: #7a4d0a;
}

#telefono { letter-spacing: 0.03em; }
