/* Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ac0a10;
  --primary-hover: #c50e15;
  --secondary-color: #2c3e50;
  --secondary-hover: #34495e;
  --accent-color: #f39c12;
  --light-color: #f9f9f9;
  --dark-color: #333;
  --text-color: #444;
  --white: #fff;
  --gray: #eee;
  --dark-gray: #777;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4 {
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Estilos dos Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow-sm);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 200px;
  height: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(172, 10, 16, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  color: var(--white);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.btn-small {
  padding: 8px 24px;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--dark-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 10px auto 0;
  opacity: 0.8;
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo {
  height: 60px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(172, 10, 16, 0.2));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding: 8px 4px;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background-color: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 0;
  margin-top: 80px;
}

.hero-banner {
  position: relative;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(172, 10, 16, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
  color: var(--white);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Mission Section */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.mission-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card h3 {
  margin-bottom: 15px;
}

/* Projects Section */
.projects-section {
  background-color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.project-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.project-content {
  padding: 25px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-description {
  color: var(--dark-gray);
  margin-bottom: 20px;
  min-height: 60px;
}

.project-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.project-details span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-gray);
}

.project-details i {
  color: var(--primary-color);
}

/* Future Projects Section - Área Vazia */
.future-projects-section {
  background-color: var(--light-color);
}

.future-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.future-projects-empty {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  border: 2px dashed #4a6fa5;
  transition: var(--transition);
}

.future-projects-empty:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.future-projects-empty i {
  font-size: 4rem;
  color: #4a6fa5;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.future-projects-empty h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.future-projects-empty p {
  color: #5a6c7d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(rgba(172, 10, 16, 0.9), rgba(172, 10, 16, 0.7));
  color: var(--white);
  padding: 80px 0;
  background-attachment: fixed;
}

.testimonials-section .section-header i {
  color: var(--accent-color);
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}

.testimonials-section .section-header h2 {
  color: var(--white);
  font-size: 2.5rem;
}

.testimonials-section .section-header h2::after {
  background-color: var(--accent-color);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.testimonials-section .carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-section .carousel-inner {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.testimonials-section .carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonials-section .carousel-item.active {
  opacity: 1;
}

.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  width: 100%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonials-section .testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonials-section .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.testimonials-section .testimonial-author h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.testimonials-section .testimonial-author span {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.testimonials-section .testimonial-content p {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(172, 10, 16, 0.05);
  border-radius: var(--border-radius);
}

.testimonials-section .testimonial-rating {
  color: var(--accent-color);
  font-size: 1rem;
}

.testimonials-section .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .carousel-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.testimonials-section .carousel-btn.prev {
  left: -50px;
}

.testimonials-section .carousel-btn.next {
  right: -50px;
}

.testimonials-section .carousel:hover .carousel-btn.prev {
  left: 10px;
}

.testimonials-section .carousel:hover .carousel-btn.next {
  right: 10px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
}

.timeline-gallery {
  position: relative;
  padding: 40px 0;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
}

.timeline-item:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-image {
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.timeline-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
  padding: 20px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.timeline-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.timeline-overlay span {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.gallery-button {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-item p {
  font-size: 1.1rem;
}

.social-media {
  margin-top: 30px;
}

.social-media h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: rgba(172, 10, 16, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Formulário REMOVIDO - apenas mantemos as informações de contato */

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  padding: 80px 0 40px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.link-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.link-column h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.link-column ul {
  list-style: none;
}

.link-column li {
  margin-bottom: 12px;
}

.link-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.link-column a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  justify-content: center;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Special Event Section */
.special-event-section {
  background: var(--white);
  padding: 80px 0;
}

.special-event-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.special-event-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.president-carousel {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.president-carousel .carousel-inner {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.president-carousel .carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.president-carousel .carousel-item.active {
  opacity: 1;
}

.president-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.president-carousel:hover img {
  transform: scale(1.05);
}

.event-details {
  flex: 1;
  min-width: 300px;
}

.event-details h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.event-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.event-info {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.event-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    max-width: 90%;
  }

  .hero-banner {
    height: 80vh;
  }

  .testimonials-section .carousel {
    max-width: 600px;
  }

  .contact-container {
    gap: 30px;
  }

  .special-event-content {
    padding: 20px;
    gap: 30px;
  }

  .president-carousel {
    max-width: 400px;
  }

  .future-projects-empty {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  .logo {
    height: 50px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    text-align: center;
  }

  nav a {
    font-size: 1.2rem;
    padding: 12px;
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hero-banner {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 95%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-small {
    padding: 6px 15px;
    font-size: 0.85rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 15px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .project-image {
    height: 180px;
  }

  .project-content {
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
    max-width: 90%;
  }

  .contact-info {
    padding: 25px;
  }

  .footer-logo {
    height: 80px;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    align-self: flex-start;
  }

  .timeline-item::before {
    left: 10px;
  }

  .special-event-content {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }

  .president-carousel {
    max-width: 100%;
  }

  .future-projects-empty {
    padding: 40px 20px;
  }

  .future-projects-empty i {
    font-size: 3rem;
  }

  .future-projects-empty h3 {
    font-size: 1.5rem;
  }

  .future-projects-empty p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-banner {
    height: 60vh;
  }

  .btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .btn-small {
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header i {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .mission-card i {
    font-size: 2rem;
  }

  .mission-card h3 {
    font-size: 1.2rem;
  }

  .project-content h3 {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 0.9rem;
  }

  .future-project-card h3 {
    font-size: 1.2rem;
  }

  .future-projects-empty i {
    font-size: 2.5rem;
  }

  .future-projects-empty h3 {
    font-size: 1.3rem;
  }

  .future-projects-empty p {
    font-size: 0.9rem;
  }

  .testimonials-section .testimonial-card {
    padding: 15px;
    max-width: 95%;
  }

  .testimonials-section .testimonial-content p {
    font-size: 0.85rem;
    padding: 8px;
  }

  .timeline-image {
    height: 200px;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Ajustes para o terceiro projeto */
.project-card:nth-child(3) .project-badge {
  background-color: #27ae60;
}

/* Ajuste para o grid de projetos com 3 cards */
@media (min-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}