/* ========================================
   KEYMEX - Estilos Específicos Vender
   ======================================== */

/* Hero Image */
.hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="300"><rect fill="%23b8d4d0" width="1920" height="300"/></svg>');
    background-size: cover;
    background-position: center;
    animation: fadeIn 0.8s ease;
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 50px;
}

/* Info Section */
.info-section {
    border: 3px solid #c9302c;
    border-radius: 10px;
    padding: 50px;
    margin-bottom: 80px;
    animation: scaleIn 0.8s ease;
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: 0 10px 40px rgba(201, 48, 44, 0.2);
    transform: translateY(-5px);
}

.info-header {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 0;
    line-height: 1.3;
}

.info-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-15px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    transition: all 0.5s ease;
}

.feature-icon-img {
    padding: 0;
}

.feature-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3,
.feature-title {
    font-size: 18px;
    font-weight: 900 !important;
    color: #c9302c;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0.5px 0.5px 0 #c9302c;
}

.feature .feature-title{
        font-weight: 900 !important;

}

.feature-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.cta-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-card:hover img {
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.cta-card:hover .cta-overlay {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease;
}

.cta-button {
    background: white;
    color: #333;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

/* Footer Info Section */
.footer-info {
    background: #f8f8f8;
    padding: 60px;
    border-radius: 10px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease;
}

.footer-info-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 36px;
    font-weight: 700;
    color: #c9302c;
    transition: all 0.3s ease;
}

.footer-logo h3:hover {
    transform: scale(1.05);
    letter-spacing: 3px;
}

.footer-logo p {
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
}

.footer-text {
    flex: 1;
    font-size: 11px;
    line-height: 2;
    color: #666;
    text-align: justify;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 50px;
    background: #f8f8f8;
}

.copyright {
    font-size: 11px;
    color: #999;
}

.developer-credit {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 15px;
    background: #333;
    color: white;
    border-radius: 20px;
    font-size: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit:hover {
    background: #c9302c;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .feature {
        padding: 20px;
    }

    .cta-title {
        font-size: 32px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .info-section {
        padding: 30px 20px;
    }
    
    .info-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-title {
        font-size: 28px;
    }
    
    .info-subtitle {
        font-size: 14px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .footer-info {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 24px;
    }
    
    .info-title {
        font-size: 22px;
    }
    
    .feature {
        padding: 15px;
    }
}
