@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  /* Primary Colors */
  --primary-color: #3c6296;
  --secondary-color: #791323;

  /* Background/Neutral Colors */
  --bg-light: #feefce;
  --bg-accent: #eccc51;

  /* Highlight/Context Colors */
  --success-color: #809b17;
  --attention-color: #ff8080;

  /* Additional Colors */
  --text-dark: #333;
  --text-light: #fff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-accent: rgba(236, 204, 81, 0.3);
  --shadow-attention: rgba(255, 128, 128, 0.4);
}

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

body {
  font-family: 'Roboto Mono', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px var(--shadow-color);
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  width: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: auto;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--success-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/goiabeira-tile.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.15;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-info {
    text-align: center;
    margin-bottom: 2rem;
}

.edition-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.event-dates,
.event-time,
.event-location {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--bg-accent);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-accent);
  text-align: center;
}

.cta-button:hover {
  background: var(--attention-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-attention);
}

.full-width {
  width: 100%;
}

/* Sections */
.section-wrapper {
  padding: 5rem 0;
  width: 100%;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-container h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--success-color);
  position: relative;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bg-accent);
  border-radius: 2px;
}

/* Generic Section Content */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content.text-only {
    grid-template-columns: 1fr;
    text-align: justify;
    max-width: 800px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-text.centered {
  text-align: center;
}

.section-text.large {
    font-size: 1.2rem;
}

.subsection-description {
    text-align: center;
    margin-bottom: 2rem;
}

.section-image {
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.section-image.primary {
    background: var(--primary-color);
}

.section-image.secondary {
    background: var(--secondary-color);
}

/* Goiabeira 2025 */
.goiabeira2025 {
    background: white;
}

/* Nossa História */
.historia {
    background: var(--bg-light);
}

/* Temática */
.tematica {
    background: var(--success-color);
}

.tematica h2 {
    color: white;
}

.tematica .section-text {
    color: white;
}

/* Eixos */
.eixos {
    background: var(--bg-light);
}

.eixos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.eixo-card {
    background: var(--attention-color);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 0 300px;
    max-width: 300px;
}

.eixo-card:hover {
    transform: translateY(-5px);
}

.eixo-header {
    margin-bottom: 1.5rem;
}

.eixo-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eixo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eixo-subtitle {
    font-size: 0.9rem;
    color: var(--bg-accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eixo-content {
    color: var(--text-light);
    line-height: 1.6;
}

.eixo-content p {
    margin: 0;
}

.eixo-content em {
    font-style: italic;
    font-weight: 600;
}

/* Programação */
.programacao {
  background: var(--success-color);
}

.programacao h2 {
  color: white;
}

.programacao-description {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.programacao-coming-soon {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
}

.programacao-coming-soon h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.programacao-coming-soon p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.programacao-days {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.day-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px var(--shadow-color);
  overflow: hidden;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-accent);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.day-header:hover {
  background: var(--attention-color);
}

.day-header h3 {
  color: var(--secondary-color);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.day-icon {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.day-icon.rotated {
  transform: rotate(180deg);
}

.day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.day-content.active {
  max-height: 2000px;
  padding: 1.5rem;
  background: var(--bg-accent);
}

.programacao-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.programacao-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.programacao-item:hover {
  transform: translateY(-2px);
}

.time-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
}

.start-time {
  font-size: 1.1rem;
  color: var(--success-color);
  margin-bottom: 0.25rem;
}

.end-time {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.content-column h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.content-column p {
  color: var(--text-dark);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

/* COMORG */
.comorg {
    background: var(--bg-light);
}

.comorg h2 {
    color: var(--primary-color);
}

.comorg-subsection {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

.comorg-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bg-accent);
    border-radius: 2px;
}

.comorg-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comorg-profile {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.comorg-profile:hover {
    transform: translateY(-5px);
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.comorg-profile h4 {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    max-width: 150px;
}

.comorg-profile p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Inscrições */
.inscricoes {
  background: var(--attention-color);
  color: var(--text-light);
}

.inscricoes h2 {
  color: white;
  text-align: left;
  margin-bottom: 1.5rem;
}

.inscricoes h2::after {
  background: var(--bg-accent);
  left: 0;
  transform: none;
}

.inscricoes-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.inscricao-card {
  background: var(--bg-accent);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex: 0 0 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}


.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-subtitle {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

.card-description {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.75rem 0 0 0;
  text-align: center;
  background: rgba(60, 98, 150, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn {
  background: var(--secondary-color);
  color: var(--text-light);
}

.primary-btn:hover {
  background: var(--success-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 138, 9, 0.3);
}

.secondary-btn {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(121, 19, 35, 0.3);
}

.disabled-btn {
  background: rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

.disabled-btn:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.4) !important;
  transform: none !important;
  box-shadow: none !important;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background: var(--bg-accent);
  color: var(--secondary-color);
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--attention-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Apoiadores */
.apoiadores {
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.apoiadores h2 {
  color: var(--bg-accent);
  margin-bottom: 1rem;
}

.apoiadores-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
}

.supporters-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.supporter {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  flex: 0 0 150px;
  max-width: 150px;
}

.supporter:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.supporter img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-accent);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 20px var(--shadow-color);
  }

  .nav-menu.active {
    display: flex;
  }

      .hero-logo {
        max-width: 80%;
    }

    .edition-name {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .event-dates,
    .event-time,
    .event-location {
        font-size: 1rem;
    }

  .historia-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .programacao-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .time-column {
    order: -1;
  }

  .programacao-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .time-column {
    order: -1;
  }

  .day-header h3 {
    font-size: 1rem;
  }

  .comorg-profiles {
        gap: 1rem;
    }

    .comorg-profile {
        min-width: 150px;
        padding: 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .inscricoes-cards {
        gap: 1rem;
    }

    .inscricao-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 180px;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .card-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .eixo-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .supporter {
        flex: 0 0 120px;
        max-width: 120px;
    }

    .programacao-coming-soon {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .programacao-coming-soon h3 {
        font-size: 1.5rem;
    }

    .programacao-coming-soon p {
        font-size: 1rem;
    }
}

/* Contact Footer */
.contact-footer {
    background: var(--attention-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--bg-accent);
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--bg-accent);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Misc styles */

.text-highlight {
  color: var(--attention-color);
  font-weight: 700;
}

.standalone-text {
  margin-bottom: 3rem;
}