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

:root {
    --primary-color: #003B8E;
    --secondary-color: #40E0D0;
    --accent-color: #FFD700;
    --text-color: #333;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
    --dark-text: #333333;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ffed4e);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Container base styles moved to mobile first section */

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-color);
    }
    50% {
        box-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    }
    100% {
        box-shadow: 0 0 5px var(--accent-color);
    }
}

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

/* Header removed */

/* Hero Section */
.hero-promo {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-promo .container {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--dark-text);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-medium);
}

.badge-text {
    display: block;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
}

.dependency-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.dependency-badge .badge-icon {
    font-size: 20px;
    margin-right: 10px;
}

.dependency-badge .badge-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.dependency-badge .badge-subtitle {
    display: inline-block;
    font-size: 12px;
    opacity: 0.9;
    font-style: italic;
}

.badge-link {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.dependency-info {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.dependency-explanation {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--secondary-color);
    scroll-margin-top: 20px;
}

.dependency-explanation h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Dependency details styles moved to mobile first section */

/* Dependency item styles moved to mobile first section */

.dependency-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 
        0 0 10px rgba(64, 224, 208, 0.3),
        0 0 20px rgba(64, 224, 208, 0.2);
    transform: translateX(3px);
}

.dependency-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Dependency text styles moved to mobile first section */

/* Hero title styles moved to mobile first section */

.highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite alternate;
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Price Container */
/* Price container styles moved to mobile first section */

.price-original {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* Price value styles moved to mobile first section */

.price-period {
    display: block;
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.savings {
    margin-top: 20px;
    padding: 15px;
    background: var(--success-color);
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.savings-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* CTA Buttons */
/* CTA buttons styles moved to mobile first section */

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

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

.btn-primary img, .btn-secondary img, .btn-primary svg, .btn-secondary svg {
    width: 24px;
    height: 24px;
}

.btn-primary.large, .btn-secondary.large {
    padding: 22px 45px;
    font-size: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

/* Estilos para preços graduais */
.gradual-pricing {
    margin: 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pricing-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.pricing-item.final {
    background: linear-gradient(135deg, var(--accent-color), #ffed4e);
    border-color: var(--accent-color);
    color: var(--dark-text);
    font-weight: 600;
}

.pricing-item .month {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-item.final .month {
    color: var(--dark-text);
}

.pricing-item .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 5px;
}

.pricing-item.final .price {
    color: var(--dark-text);
}

.pricing-item .note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
    margin-top: 10px;
}

.gradual-info {
    text-align: center;
    margin: 30px 0;
}

.gradual-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 59, 142, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
}

/* Section title styles moved to mobile first section */

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Benefits grid styles moved to mobile first section */

/* Benefit card styles moved to mobile first section */

/* Shimmer effect removed from benefit cards */

.benefit-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 
        0 0 20px rgba(64, 224, 208, 0.3),
        0 0 40px rgba(64, 224, 208, 0.2),
        0 0 60px rgba(64, 224, 208, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
    filter: none;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.promotion-info {
    margin-top: 30px;
}

.promotion-end {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vacancy-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.vacancy-icon {
    font-size: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.vacancy-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: pulse 1s infinite;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Countdown timer styles moved to mobile first section */

/* Timer item styles moved to mobile first section */

/* Timer number styles moved to mobile first section */

.timer-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Credentials Section */
.credentials-section {
    padding: 80px 0;
    background: var(--white);
}

.credentials-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.credential-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.credential-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 
        0 0 20px rgba(64, 224, 208, 0.3),
        0 0 40px rgba(64, 224, 208, 0.2),
        0 0 60px rgba(64, 224, 208, 0.1);
    transform: translateY(-5px);
}

.credential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.credential-icon svg {
    width: 60px;
    height: 60px;
}

.credential-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.credential-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Testimonials grid styles moved to mobile first section */

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 
        0 0 15px rgba(64, 224, 208, 0.3),
        0 0 30px rgba(64, 224, 208, 0.2),
        0 0 45px rgba(64, 224, 208, 0.1);
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
    opacity: 0.8;
}

.vacancy-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--danger-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    margin: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-medium);
}

.vacancy-icon {
    font-size: 1.2rem;
}

.vacancy-text {
    font-weight: 700;
}

/* Footer */
.promo-footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.promo-footer p {
    opacity: 0.8;
}

.footer-links {
    margin: 15px 0;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.agency-credit {
    margin-top: 10px;
    font-size: 0.9rem;
}

.agency-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.agency-credit a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Mobile First - Base styles for mobile */
/* Reset and base styles for mobile devices */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
}

.pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}

.pricing-item {
    padding: 15px;
}

.pricing-item .price {
    font-size: 1.5rem;
}

.gradual-text {
    font-size: 1rem;
    padding: 12px 20px;
}

.promotion-end {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.vacancy-alert {
    padding: 12px 20px;
    flex-direction: column;
    gap: 8px;
}

.vacancy-text {
    font-size: 1rem;
}

.price-container {
    padding: 20px;
    margin: 30px 0;
}

.price-value {
    font-size: 1.8rem;
}

.price-promo .price-value {
    font-size: 2.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    padding: 25px 20px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.timer-item {
    min-width: 70px;
    padding: 15px;
}

.timer-number {
    font-size: 1.8rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.dependency-details {
    gap: 10px;
}

.dependency-item {
    padding: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dependency-text {
    font-size: 0.9rem;
}

.badge-link {
    display: block;
    margin: 10px 0 0 0;
    text-align: center;
}

.dependency-badge {
    text-align: center;
    margin: 15px 0;
}

.dependency-badge .badge-text,
.dependency-badge .badge-subtitle {
    display: block;
    margin: 5px 0;
}

/* Tablet styles */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .price-container {
        padding: 30px;
        margin: 40px 0;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .price-promo .price-value {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
        margin-top: 40px;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: none;
        padding: 18px 35px;
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 18px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .dependency-details {
        gap: 15px;
    }
    
    .dependency-item {
        padding: 15px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .dependency-text {
        font-size: 1rem;
    }
    
    .badge-link {
        display: inline-block;
        margin: 0 0 0 15px;
        text-align: left;
    }
    
    .dependency-badge {
        text-align: left;
        margin: 20px 0;
    }
    
    .dependency-badge .badge-text,
    .dependency-badge .badge-subtitle {
        display: inline-block;
        margin: 0 10px 0 0;
    }
    
    .vacancy-alert {
        font-size: 1rem;
        padding: 12px 20px;
        margin: 15px 0;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 40px;
        line-height: 1.1;
        text-align: center;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .price-container {
        padding: 40px;
        margin: 40px 0;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-promo .price-value {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        gap: 20px;
        margin-top: 40px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 18px 35px;
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .countdown-timer {
        gap: 30px;
    }
    
    .timer-item {
        min-width: 100px;
        padding: 20px;
    }
    
    .timer-number {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .dependency-details {
        gap: 15px;
    }
    
    .dependency-item {
        padding: 15px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .dependency-text {
        font-size: 1rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credential-card {
        padding: 30px 20px;
    }
}

/* Large Desktop styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}
