* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

header nav ul li a:hover {
    color: #f7931a;
    background: rgba(247, 147, 26, 0.1);
}


/* Dropdown no menu (sem JS) */
.dropdown { position: relative; display: inline-block; }

.dropbtn {
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;                 /* gruda no botão, sem “vão” */
  background: #fff;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  overflow: hidden;
  z-index: 1001;             /* fica acima do header/nav */
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background .15s;
}
.dropdown-content a:hover { background: #f4f6f8; }

/* Abre no desktop (hover) e no mobile (focus) */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content { display: block; }

/* Ponte de hover para não fechar ao descer o mouse */
.dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 8px; /* pequena faixa transparente */
}

/* Se algo estiver cortando o menu, garanta isso: */
header, nav { overflow: visible; }

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f7931a" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0.8"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #f7931a, #ff6b35);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.4);
}

main {
    background: white;
    margin: 0;
    padding: 0;
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.content-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-image {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-right: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

.section-header h2 {
    color: #f7931a;
    font-size: 2.5rem;
    font-weight: 700;
    flex: 1;
    min-width: 300px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-text strong {
    color: #f7931a;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.4rem;
    }
    
    header nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    header nav ul li {
        margin: 5px 0;
    }
    
    .hero {
        margin-top: 120px;
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-image {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        min-width: auto;
    }
    
    .content-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}


