/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

.quality-stamp-container {
    width: 100%;
    background: #f8f9fa;
    padding: 0;
    margin: 0;
}

.stamp-map-wrapper {
    display: flex;
    min-height: 100vh;
}

.quality-stamp {
    flex: 0 0 40%;
    padding: 4rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.stamp-header {
    margin-bottom: 2.5rem;
}

.stamp-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stamp-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.divider {
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 1.5rem 0;
}

.stamp-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #7f8c8d;
    margin: 0;
}

.elegant-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    margin: 0.7rem 0;
    color: #555;
}

.contact-info i {
    color: #3498db;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.certification-badge {
    background: #2c3e50;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.full-width-map {
    flex: 1;
    min-height: 100vh;
}


.info {
    background-color: var(--bgfooter);
    padding: 3rem 2rem;
    font-family: 'Arial', sans-serif;
    color: var(--white);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.info-column-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--green-400);
    border-bottom: 1px solid rgba(80,200,120,0.3);
    padding-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: 600;
}

.info-column h3 {
    transition: all 0.3s ease;
}

.info-column h3:hover {
    transform: translateX(5px);
    opacity: 0.9;
}

.info-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}


.info-column ul li {
    position: relative;
    padding-bottom: 2px;
    display: block; 
}

.info-column ul li a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 2px 0; 
    transition: color 0.3s ease;
}

.info-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-400);
    transition: width 0.3s ease;
}

.info-column ul li:hover a {
    color: var(--green-400);
}

.info-column ul li:hover a::after,
.info-column ul li a:focus::after { 
    width: 100%;
}


.copyright {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    max-width: 1200px;
    margin: 0 auto;
}

.redesIcons {
    display: flex; 
    gap: 12px;
    margin-bottom: 1rem;
    list-style: none; 
}

.redesIcons img {
    filter: brightness(0) invert(1);
    width: 32px; 
    height: 32px;
    transition: transform 0.3s ease;
}

.redesIcons img:hover {
    transform: scale(1.1); 
}

/* Responsividade */
@media (max-width: 992px) {
    .info-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-column-group {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .info-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .info-columns {
        grid-template-columns: 1fr;
    }
    
    .info-column-group {
        gap: 1rem;
    }
}

/* --- */

@media (max-width: 992px) {
    .stamp-map-wrapper {
        flex-direction: column;
    }
    
    .quality-stamp {
        flex: 1;
        padding: 3rem 2rem;
    }
    
    .full-width-map {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .certifications {
        justify-content: center;
    }
    
    .stamp-header h1 {
        font-size: 2rem;
    }
    
    .stamp-header h2 {
        font-size: 1.2rem;
    }
    
    .elegant-text {
        font-size: 1rem;
    }
}