@font-face {
    font-family: 'MADE TOMMY';
    src: url('../assets/fonts/MADETOMMY.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MADE TOMMY';
    src: url('../assets/fonts/MADETOMMY-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000;
    font-family: 'MADE TOMMY', sans-serif;
}

.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/006.png);
    padding: 3rem;
}

.hero-content {
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content-mobile {
    display: none;
}

.logo-metallist,
.info {
    width: 400px;
}

.catalogos-section {
    background-color: #f5f5f5;
    padding: 50px 30px;
    text-align: center;
}

.catalogos-section h2 {
    color: #1a3a5c;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.catalogos-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.catalogos-grid a {
    flex-shrink: 0;
}

.catalogos-grid img {
    height: 160px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.catalogos-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.footer {
    background-color: #1a3a5c;
    padding: 20px 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-qrcode img {
    height: 70px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
}

.footer-title {
    font-size: 10px;
    letter-spacing: 1px;
}

.footer-brand {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-brand .highlight {
    color: #6ba3d6;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    margin-top: 5px;
}

.footer-phones a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-phones a:hover {
    color: #6ba3d6;
}

.btn-whatsapp {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 101;
}

.btn-whatsapp img {
    width: 60px;
}

.info-mobile {
    width: 340px;
}

@media (max-width: 768px) {
    .hero-content {
        display: none;
    }
    
    .hero-content-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
    
    .catalogos-section {
        padding: 30px 15px;
    }
    
    .catalogos-section h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .catalogos-grid {
        gap: 12px;
    }
    
    .catalogos-grid img {
        height: 100px;
    }
    
    .footer {
        padding: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social {
        order: 1;
    }
    
    .footer-qrcode {
        order: 2;
    }
    
    .footer-qrcode img {
        height: 60px;
    }
    
    .footer-contact {
        order: 3;
        align-items: center;
    }
    
    .footer-phones {
        align-items: center;
    }
}

@media (max-width: 500px) {
    .catalogos-grid img {
        height: 80px;
    }
    
    .footer-brand {
        font-size: 18px;
    }
    
    .footer-phones a {
        font-size: 12px;
    }
}