/* Importação de fontes  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
  }

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

/* Definição de rotas padrão */

:root{
    --bg-color: #FFFF;
    --secondary-color: #E30613;
    --third-color:  #a12720;
    --font-text: "Montserrat", sans-serif;

}

.montserrat {
    font-family: var(--font-text);
    font-optical-sizing: auto;
}

body {
    font-family: var(--font-text);
    line-height: 1.6;
    align-items: center;
    background-color: var(--bg-color);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
  }

  /* Header */

.container_header{
    background-color:  var(--secondary-color);
    height: 7rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
}

.img_header{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.img_header img{
    width: 75%;
    height: auto;
}

.division_header{
    background-color: var(--bg-color);
    width: 0.2%;
    height: 53%;
    display: flex;  
}

.nav_header{
    display: flex;
    flex-direction: row;
    gap : 10%;
    width: 60%;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 80%;
    list-style: none;
}

.nav_header a{
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: var(--p-font);
    color: var(--bg-color);
    text-transform: uppercase;
    font-weight: 800;
    
}

.sent_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.sent_container h1{
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sent_container p{
    color: black;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sent_container a{
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
}

.sent_container a:hover{
    color: var(--third-color);
}


/* Footer */

footer {
    background-color: #a12720; 
    padding: 0; 
    margin: 0; 
    text-align: center;
    color: var(--bg-color);
    font-family: "Montserrat", sans-serif;
    position: relative; 
  }
  
  .social-media-container {
    background-color: #D71920; 
    padding: 10px; 
    border-radius: 5px;
    margin-bottom: -5px; 
  }
  
  .social-media {
    display: flex;
    justify-content: center;
    gap: 20px; 
    background-color: #D71920;
    padding: 10px;
    border-radius: 5px;
    width: calc(100% + 20px);
    margin: 0 -10px;     box-sizing: border-box; 
  }
  
  .social-icon {
    width: 50px; 
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-icon img {
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
  }
  
  .addresses {
    display: flex;
    justify-content: space-around;
    font-family: var(--font-text);
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; 
    padding: 2rem 0; 
    background-color: #b61818;
  }
  
  .address {
    flex: 1;
    max-width: 300px; 
    text-align: center;
    padding: 10px; 
  }

/* Responsividade */

@media (max-width: 480px)  {
   
    .banner_content {
        height: 150px;
        flex-direction: column;
        padding: 1rem;
    }

    .nav_header {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        padding: 2rem;
    }

    .nav_header a {
        font-size: 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-content ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .nav-content ul li {
        width: 100%;
    }

    .nav-content ul li a {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    footer {
        background-color: #a12720;
        padding: 0;
        margin: 0;
        text-align: center;
        color: white;
        font-family: "Montserrat", sans-serif;
        position: relative;
    }
    
    .social-media-container {
        background-color: #D71920;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: -5px;
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        gap: 20px;
        background-color: #D71920;
        padding: 10px;
        border-radius: 5px;
        width: calc(100% + 20px);
        margin: 0 -10px;
        box-sizing: border-box;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .addresses {
        display: flex;
        justify-content: space-around;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
        background-color: #b61818;
    }
    
    .address {
        flex: 1;
        max-width: 300px;
        text-align: center;
        padding: 10px;
    }
    
    .divider {
        width: 2px;
        height: 60px;
        background-color: white;
        margin-left: 10px;
        margin-right: 10px;
    }

}

@media (max-width: 480px)  {

    .banner_content {
        height: 150px;
        flex-direction: column;
        padding: 1rem;
    }

    .nav_header {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        padding: 2rem;
    }

    .nav_header a {
        font-size: 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-content ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .nav-content ul li {
        width: 100%;
    }

    .nav-content ul li a {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    footer{
        padding: 1rem;
    }

    .social-media-container {
        padding: 1rem;
    }

    .addresses {
        flex-direction: column;
        gap: 1rem;
    }

    .address {
        max-width: 100%;
    }
    
}

