/* style.css - completo e corrigido com HERO atualizado */
@font-face {
  font-family: 'Carbona';
  src: url('../fonts/CarbonaVariable.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    margin: 0;
    font-family: 'Carbona', sans-serif;
    background: #ffffff;
    color: #003366;
  }
  


  /* HEADER */
  .site-header {
    background: linear-gradient(to bottom, #87ceeb, #e6f4ff);
    padding: 30px 30px 30px;
    position: relative;
    min-height: 100px;
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  
  .logo {
    width: 180px;
    margin: 0 auto 10px;
    display: block;
  }
  
  .menu-area {
    position: absolute;
    top: 10px;
    right: 5px;
    text-align: right;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 1rem;
    color: #003366;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
  }
  
  .menu-label {
    font-size: 1rem;
    color: #003366;
  }

  .phrase-area{
    position: absolute;
    top: 85px;
    right: 5px;
    font-size: 1.2rem;
    padding: 0px 0px 0px;
    text-align: right;    
    margin: 0px;
    color: #ff6600;
  }

  .header-phrase{
    padding: 2px 0px 0px;
    margin: 0px 0px 0px;
  }


  .phrase-sucess{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.0rem;
    padding: 0px 0px 0px;
    text-align: right;    
    margin: 0px;
    color: #ff6600;
  }

  .header-sucess{
    padding: 0px 0px 0px;
    margin: 0px 0px 0px;
  }

  .menu-dropdown {
    display: none;
    position: absolute;
    font-size: 0.7rem;    
    right: 0;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
  }
  
  .menu-dropdown ul {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
  }
  
  .menu-dropdown ul li {
    margin: 10px 0;
  }
  
  .menu-dropdown ul li a {
    text-decoration: none;
    color: #003366;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .header-center {
    margin-top: 100px;
    text-align: center;
  }
  
  .btn-header-main {
    font-size: 1.4rem;
    background-color: #ff6600;
    color: white;
    padding: 18px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
    background-color: #fff3cd;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .hero-text {
    flex: 1 1 300px;
    padding: 20px;
  }
  
  .hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #003366;
  }
  
  .btn-primary.hero-btn {
    background-color: #007bff;
    color: white;
    font-size: 1.3rem;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .baloes .balao {
    background-color: #fff0e0;
    border-left: 5px solid #ff6600;
    padding: 12px 18px;
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
  }
  .baloes .balao:hover {
    background-color: #ffe6cc;
    transform: scale(1.02);
    cursor: pointer;
  }
  
  .hero-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
 
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  /* FORECAST */
  .forecast-section {
    padding: 40px 20px;
    background-color: #f0f8ff;
  }
  
  .container h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #forecast p {
    margin: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
  }
  
  .forecast-item {
    background-color: #ffffff;
    border: 1px solid #cce5ff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
  }
  
  .forecast-item:hover {
    transform: scale(1.03);
  }
  
  .forecast-item i {
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .destaque {
    background-color: #fff0cc;
    border-color: #ffc107;
  }
  
  #forecast-hoje h4,
  #forecast-semana h4 {
    text-align: center;
    margin-bottom: 10px;
    color: #003366;
  }
  
  .windguru-frame {
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  
  /* OUTROS SITES */
  .outros-sites {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  /* FOOTER */
  footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  footer img {
    max-width: 160px;
    margin-bottom: 10px;
  }