/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #95d5b2;
    --accent-light: #d8f3dc;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-nav {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-white) 50%, var(--accent-light) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 32px;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.scroll-indicator span {
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: none;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--primary-color);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(8px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Consultation Section */
.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    min-width: 60px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.consultation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.circle-content {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    gap: 20px;
}

.circle-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.2;
}

.circle-subtext {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 10px 20px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 25px;
    display: inline-block;
}

/* Audience Section */
.audience {
    background: var(--bg-light);
}

.audience-content {
    display: grid;
    gap: 60px;
}

.audience-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.audience-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.audience-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.list-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

.audience-reasons {
    background: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.audience-reasons h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reason-card {
    text-align: center;
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--accent-light);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.reason-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item p {
    opacity: 0.9;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    opacity: 0.8;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 8px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 60px 40px 40px;
}

.modal-body h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(450px);
    transition: var(--transition);
    z-index: 9999;
    min-width: 320px;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    animation: slideInToast 0.4s ease-out;
}

@keyframes slideInToast {
    0% {
        transform: translateX(450px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-icon {
    font-size: 24px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Hide appointment button on desktop by default */
.appointment-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 70px;
    height: auto;
    padding: 12px 8px 10px 8px;
    border-radius: 35px;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.appointment-btn .btn-text {
    font-weight: 700;
    font-size: 11px;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* Animación de entrada */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-buttons {
    animation: slideInRight 0.6s ease-out 0.5s both;
}

/* Efecto de pulso para llamar la atención */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-btn {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-image {
        height: 300px;
    }

    .section-title {
        font-size: 36px;
    }

    .consultation-content {
        grid-template-columns: 1fr;
    }

    .visual-circle {
        width: 300px;
        height: 300px;
    }

    .circle-content {
        width: 250px;
        height: 250px;
        padding: 35px;
        gap: 16px;
    }

    .circle-text {
        font-size: 22px;
    }

    .circle-subtext {
        font-size: 13px;
        padding: 8px 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    /* Show appointment button on tablet */
    .appointment-btn {
        display: flex;
        width: 64px;
        padding: 10px 6px 8px 6px;
        gap: 5px;
    }

    .appointment-btn .btn-text {
        font-size: 10px;
    }

    .appointment-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .floating-card {
        padding: 16px;
    }

    .card-icon {
        font-size: 24px;
    }

    .floating-card p {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .audience-reasons {
        padding: 32px 24px;
    }

    .modal {
        padding: 0;
    }

    .modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-body {
        padding: 60px 24px 24px;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.05);
        z-index: 100;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
        padding: 16px 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visual-circle {
        width: 280px;
        height: 280px;
    }

    .circle-content {
        width: 230px;
        height: 230px;
        padding: 30px;
        gap: 14px;
    }

    .circle-text {
        font-size: 19px;
    }

    .circle-subtext {
        font-size: 12px;
        padding: 8px 14px;
    }

    .scroll-indicator {
        bottom: 30px;
        gap: 12px;
    }

    .scroll-indicator span {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 0.5px;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
    }

    .scroll-arrow::before {
        width: 3px;
        height: 16px;
    }

    .scroll-arrow::after {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 10px solid var(--primary-color);
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .floating-btn svg {
        width: 26px;
        height: 26px;
    }

    /* Show appointment button on mobile */
    .appointment-btn {
        display: flex;
        width: 62px;
        padding: 10px 6px 8px 6px;
        gap: 4px;
    }

    .appointment-btn .btn-text {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .appointment-btn svg {
        width: 22px;
        height: 22px;
    }
}
