/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Logo */
.hero {
    text-align: center;
    background-color: #fff;
}



.tagline {
    font-size: 1.2em;
    margin: 0.5em 0;
    font-weight: 500;
}

.main-categories {
    color: #000;
    padding: 10px;  
}

.main-categories .frase-destaque{
    font-size: 2em;
    font-weight: bold;

}

.images-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2em;
}

.images-grid img {
    width: 100%;
    height: 50vh;
    display: block;
}

.services-section{
    margin: 2em 0.5em;
}

.services-section h3{
    font-size: 1.5em;
}

.services-section ul{
    list-style-type: '- ';
    padding: 1em auto;
    margin-left: 1em;
    font-size: 1.2em;
}

.footer-item{
    margin: 2em auto;
    text-align: center;
    font-weight: bold;
}

.footer-item a{
    color: #000;
    text-decoration: none;
}


/* Responsividade para Telemóveis */
@media (max-width: 768px) {
    .custom-list {
        grid-template-columns: 1fr; /* Uma coluna no telemóvel */
    }
    
    .logo-text { font-size: 60px; }
    
    .main-categories {
        font-size: 16px;
    }

    .images-grid {
        grid-template-columns: 1fr; /* 1 por linha */
    }

    .images-grid img {
       height: auto; 
    }

    .main-categories .frase-destaque{
        font-size: 1.5em;
        font-weight: bold;
    
    }

    .services-section h3{
        font-size: 1.3em;
    }
}