@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #212121;
    text-transform: uppercase;
}

.main-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: url('../IMG/desktop-incense-header.jpg');
    background-position: center top;
    background-size: cover;
    padding: 0px 0;
    text-align: left;
}


.main-banner,
.language-wrapper,
.partner-section {
    width: 60%;
    padding-left: 100px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: 1560px;
}

.main-banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 240px;
    margin: 50px 0;
}

.title {
    font-size: 3.5em;
    color: #999933;
    margin: 10px 0;
    font-weight: 600;
}

.subtitle {
    font-size: 2em;
    color: #CC6633;
    max-width: 100%;
   margin: 0 0 50px 0;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}


.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: start;
    align-items: start;
    
}

.flag-box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    text-align: center;
}

.flag-box a {
    display: block;
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.6em;
    transition: color 0.2s ease;
    padding: 5px;
    border-radius: 12px;
}

.flag-box a:hover {
    color: #cc6633;
    background: rgba(0, 0, 0, 0.03);
}

.flag-box img {
    width: 100%;
    max-width: 240px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.flag-box img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* SEÇÃO DO PARCEIRO */
.partner-section {
    margin-top: 50px;
}

.partner-intro {
    text-align: center;
    font-weight: 700;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
}

.partner-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.flag-box-partner {
    justify-content: space-between;
    align-items: center;
    display: flex;   
}
  
.partner-grid img {
    max-height: 70px;
    object-fit: contain;
    padding: 50px;;
}

.partner-grid .flag {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.partner-products {
    display: flex;
    justify-content: start;
    gap: 120px;
    margin-bottom: 40px;
}

.partner-products a {
    display: block;
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.6em;
    transition: color 0.2s ease;
    padding: 5px;
    border-radius: 12px;
}

.partner-products a:hover {
    color: #cc6633;
    background: rgba(0, 0, 0, 0.03);
}

.thank-you {
    text-align: center;
    font-weight: 700;
    font-size: 1.5em;
    color: #444;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .main-section {
      width: 100vw;
      min-height: 100vh;
      background-image: url('../IMG/mobile-incense-header.jpg');
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      padding: 40px 0;
      text-align: left;
    }
  
    .main-banner,
    .language-wrapper,
    .partner-section {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      box-sizing: border-box;
    }

    .main-banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
  
    .title {
      font-size: 2.2em;
      text-align: center;
    }
  
    .subtitle {
      font-size: 1.2em;
      margin: 0 0 50px 0;
      text-align: center;
    }
  
    .language-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .flag-box {
      align-items: center;
      text-align: left;
    }
      
  
    .flag-box img {
      max-width: 100%;
    }
  
    .flag-box a {
      font-size: .9em;
    }
    .partner-section {
        margin-top: 40px;
    }
    .partner-intro,
    .thank-you {
      text-align: center;
      font-size: 1em;
    }
  
    .partner-products {
      flex-direction: column;
      gap: 20px;
    }
  
    .partner-products a {
      font-size: 1em;
    }
  }
  