/* Estilos específicos para o logo da Mada */
.logo, .footer-logo {
    max-width: 150px;
    height: auto;
    display: block;
}

.site-logo a {
    display: inline-block;
}

.site-logo img {
    transition: transform 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
}

/* Ajustes de cores para combinar com o logo vermelho */
:root {
    --mada-red: #e74c3c;
    --mada-red-hover: #ff6b6b;
    --mada-dark: #121212;
    --mada-dark-lighter: #1a1a1a;
    --mada-dark-lightest: #242424;
    --mada-text: #ffffff;
    --mada-text-secondary: #cccccc;
    --mada-text-tertiary: #999999;
}

.btn-primary, 
.submit,
.widget_search button,
.page-numbers.current,
.step-item:before {
    background-color: var(--mada-red);
}

.btn-primary:hover,
.submit:hover,
.widget_search button:hover,
.page-numbers:hover,
.post-share-button:hover,
.contact-social-link:hover,
.footer-social-link:hover,
.widget_tag_cloud a:hover {
    background-color: var(--mada-red-hover);
}

a, 
.main-navigation a:hover:after,
.main-navigation .current-menu-item a:after,
.hero-subtitle,
.stat-number,
.solution-icon,
.testimonial-author-title,
.blog-meta-icon,
.blog-readmore,
.post-meta-icon,
.post-content h3,
.comment-reply-link,
.footer-contact-icon,
.section-title:after,
.widget-title:after,
.footer-title:after {
    color: var(--mada-red);
}

/* Melhorias de responsividade */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo, .footer-logo {
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo, .footer-logo {
        max-width: 120px;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .header-cta {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .logo, .footer-logo {
        max-width: 100px;
    }
}

/* Melhorias estéticas para design clean */
body {
    font-weight: 300;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
}

.btn, 
.solution-item,
.testimonial-card,
.pricing-card,
.blog-card,
.widget,
.form-control {
    border-radius: 8px;
}

.btn {
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 12px 28px;
}

.solution-item,
.testimonial-card,
.pricing-card,
.blog-card,
.widget {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.solution-item:hover,
.testimonial-card:hover,
.pricing-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Animações sutis */
.hero-content,
.section-title,
.solution-item,
.testimonial-card,
.step-item,
.pricing-card,
.blog-card {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes de espaçamento para design clean */
.section-padding {
    padding: 100px 0;
}

.container {
    padding: 0 20px;
}

.hero-section {
    padding-top: 180px;
}

/* Melhorias de acessibilidade */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--mada-red);
    outline-offset: 2px;
}
