/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e5128, #27ae60);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #a8e6cf;
}

/* Login Button Styles */
.btn-login {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
        color: #27ae60;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(46, 125, 50, 0.8),
      rgba(27, 94, 32, 0.7)
    ),
    url("https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.8);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nav-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
    color: #333;
    text-decoration: none;
}

.nav-card i {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
    display: block;
}

.nav-card h4 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #2e7d32;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: #2e7d32;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: rgb(255, 255, 255);
    color: #000000;
    transform: translateY(-2px);
}

.btn-secondary2 {
    background: white;
    color: #2e7d32;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary2:hover {
    background: rgb(255, 255, 255);
    color: #000000;
    transform: translateY(-2px);
}

.cta-button {
    background: #2ecc71;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Missão, Visão e Valores Section */
.mvv-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mvv-card h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.valor-item {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.valor-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: white;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e5128;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #27ae60;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
}

.content-item h3 {
    color: #1e5128;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Events */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Modern Events Section */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.events-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-section-header .section-icon {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
    display: block;
}

.events-section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.events-section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-carousel {
    position: relative;
}

.news-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 56px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.news-track::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 180px;
    background: #f1f3f5;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-text {
    padding: 18px 20px 22px;
}

.news-text h3 {
    color: #2e7d32;
    margin-bottom: 8px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.news-text p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.news-nav-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.news-nav-btn i {
    color: #2e7d32;
    font-size: 1.1rem;
}

.news-nav-btn.prev {
    left: 0;
}

.news-nav-btn.next {
    right: 0;
}

.news-nav-btn:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-nav-btn:disabled:hover {
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .news-track {
        padding: 10px 12px;
    }

    .news-card {
        flex-basis: 85%;
    }

    .news-nav-btn {
        display: none;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.modern-event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.modern-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-event-card.featured {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
}

.modern-event-card.featured .event-date {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-event-card.featured .event-title {
    color: white;
}

.modern-event-card.featured .event-description {
    color: rgba(255, 255, 255, 0.9);
}

.event-card-header {
    padding: 25px;
    position: relative;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e8;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.modern-event-card.featured .event-detail {
    color: rgba(255, 255, 255, 0.9);
}

.event-detail i {
    color: #2e7d32;
    font-size: 1rem;
}

.modern-event-card.featured .event-detail i {
    color: rgba(255, 255, 255, 0.9);
}

/* Additional Event Card Styles */
.event-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.event-overlay.secondary {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3) 0%, rgba(3, 169, 244, 0.1) 100%);
}

.event-overlay.tertiary {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3) 0%, rgba(255, 193, 7, 0.1) 100%);
}

.event-header {
    position: relative;
    z-index: 2;
    padding: 20px 25px 0;
}

.event-date-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.date-circle {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.date-circle.secondary {
    background: #2196f3;
}

.date-circle.tertiary {
    background: #ff9800;
}

.date-circle .day {
    font-size: 1.2rem;
    line-height: 1;
}

.date-circle .month {
    font-size: 0.7rem;
    line-height: 1;
}

.event-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-status.featured-status {
    background: rgba(255, 193, 7, 0.2);
    color: #f57f17;
}

.event-content {
    position: relative;
    z-index: 2;
    padding: 0 25px 25px;
}

.event-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e8;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-category.secondary {
    background: #e3f2fd;
    color: #1976d2;
}

.event-category.tertiary {
    background: #fff3e0;
    color: #f57c00;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #2e7d32;
    font-size: 1rem;
}

.event-btn {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.event-btn.secondary {
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
}

.event-btn.secondary:hover {
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.event-btn.tertiary {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
}

.event-btn.tertiary:hover {
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.view-all-events {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    text-decoration: none;
    color: white;
}

.events-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
    min-height: 300px;
}

.events-nav-btn {
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.events-nav-btn:hover:not(:disabled) {
    background: #1b5e20;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.events-nav-btn:disabled {
    cursor: not-allowed;
    background: #ccc;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 1.5rem;
}

.event-card h3 {
    color: #2e7d32;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.event-card .event-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-card .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.event-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Event Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Public Events Compact Layout */
.public-events .event-card {
    display: flex;
    margin-bottom: 1.5rem;
    height: 150px;
}

.public-events .event-card img {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
}

.public-events .event-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.public-events .event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.public-events .event-card .event-meta {
    margin-bottom: 0.5rem;
}

.public-events .event-card .event-meta span {
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
}

.event-date {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
}

.event-info h3 {
    color: #1e5128;
    margin-bottom: 0.5rem;
}

.event-time {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Modern Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section-header .section-icon {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
    display: block;
}

.services-section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.modern-service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-service-card.featured {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    transform: scale(1.02);
}

.modern-service-card.featured::before {
    background: rgba(255, 255, 255, 0.3);
}

.modern-service-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.modern-service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #2e7d32;
}

.modern-service-card.featured .service-icon i {
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modern-service-card.featured .service-content h3 {
    color: white;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.modern-service-card.featured .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e8;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.modern-service-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-tag i {
    font-size: 0.8rem;
}

.services-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-cta h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    text-decoration: none;
    color: white;
}

.cta-btn i {
    font-size: 1rem;
}

/* Programs */
.programs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.program-card {
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.program-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.program-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #ffffff; /* Títulos brancos */
}

.program-card p {
  font-size: 14px;
  color: #f1f1f1; /* Texto mais claro */
}

/* Retail */
.retail-info {
    text-align: center;
}

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

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

.benefit i {
    font-size: 2rem;
    color: #27ae60;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e5128;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.complaint-form,
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact and Denuncia Section */
.contact-denuncia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-section,
.denuncia-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-section h3,
.denuncia-section h3 {
    color: #1e5128;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1e5128;
    margin-bottom: 0.5rem;
}

/* Denuncia Section Styles */
.denuncia-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.denuncia-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.denuncia-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.1rem;
    width: 20px;
}

.denuncia-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.denuncia-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.denuncia-actions .btn:hover {
    background: #1e5128;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.denuncia-contact {
    padding: 1rem;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.denuncia-contact p {
    margin: 0.5rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.denuncia-contact p:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
}

.denuncia-contact i {
    color: #27ae60;
    width: 16px;
}

button[type="submit"] {
    background: #27ae60;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background: #1e5128;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

/* Modern Login Modal Styles */
.modern-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.modern-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modern-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    z-index: 3001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modern-modal.show .modern-modal-content {
    transform: scale(1) translateY(0);
}

.modern-modal-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modern-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.modern-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.modern-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.modern-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modern-modal-body {
    padding: 40px 30px;
    text-align: center;
}

/* Product Detail Modal Specifics */
#product-modal .modern-modal-content {
    max-width: 800px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem 0;
    text-align: left;
}

.product-detail-image {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    margin: 0;
}

#modal-product-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
}

.login-icon {
    margin-bottom: 25px;
}

.login-icon i {
    font-size: 4rem;
    color: #4CAF50;
    opacity: 0.8;
}

.modern-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.modern-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-input-wrapper:focus-within {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background: white;
}

.modern-input-wrapper i {
    padding: 15px;
    color: #6c757d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.modern-input-wrapper:focus-within i {
    color: #4CAF50;
}

.modern-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 15px 15px 0;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.modern-input-wrapper input::placeholder {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.modern-input-wrapper:focus-within input::placeholder {
    color: #6c757d;
}

.modern-login-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

/* Password Recovery Modal Styles */
.recovery-modal {
    max-width: 450px;
    width: 90%;
}

.recovery-icon {
    text-align: center;
    margin-bottom: 20px;
}

.recovery-icon i {
    font-size: 4rem;
    color: #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    padding: 30px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.recovery-text {
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modern-recovery-btn {
    width: 100%;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.modern-recovery-btn:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.modern-recovery-btn:active {
    transform: translateY(0);
}

.modern-recovery-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.recovery-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.recovery-footer p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.recovery-footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recovery-footer a:hover {
    color: #45a049;
    text-decoration: underline;
}

.modern-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-login-btn:hover::before {
    left: 100%;
}

.modern-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.modern-login-btn:active {
    transform: translateY(0);
}

.modern-login-btn i {
    margin-right: 8px;
}

.login-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.login-footer p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.login-footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Responsive Design for Modern Modal */
@media (max-width: 480px) {
    .modern-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modern-modal-header {
        padding: 20px;
    }
    
    .modern-modal-body {
        padding: 30px 20px;
    }
    
    .login-icon i {
        font-size: 3rem;
    }
}

/* Private Areas */
.private-area {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: #f8f9fa;
}

.private-header {
    background: linear-gradient(135deg, #1e5128, #27ae60);
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.private-header button {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.private-content {
    padding: 3rem 0;
}

.feature-card {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
}

.feature-card h3 {
    color: #1e5128;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Weather Station */
.weather-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.weather-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather-item .label {
    font-weight: 500;
    color: #1e5128;
}

.weather-item .value {
    font-weight: bold;
    color: #27ae60;
    font-size: 1.1rem;
}

/* Chat Assistant */
.chat-container {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    max-width: 80%;
}

.assistant-message {
    background: #27ae60;
    color: white;
    margin-right: auto;
}

.user-message {
    background: #e0e0e0;
    color: #333;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    background: white;
    border-radius: 0 0 10px 10px;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.chat-input button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* User Management */
.user-management button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

#users-list {
    display: grid;
    gap: 1rem;
}

.user-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-actions button {
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.edit-btn {
    background: #f39c12;
    color: white;
}

.delete-btn {
    background: #e74c3c;
    color: white;
}

/* Footer */
.footer {
  background: #1e5128;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Footer Logo Styles */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-section {
  display: flex;
  justify-content: center;
}

.footer-logo-img {
  height: 80px;
  width: auto;
}

.footer-logo h3 {
  margin: 0;
  color: #ffffff;
}

@media (max-width: 480px) {
  .footer-logo-img {
    height: 60px;
  }
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section .quick-links {
  column-count: 2;
  column-gap: 1.5rem;
}

.footer-section .quick-links li {
  break-inside: avoid;
}

@media (max-width: 768px) {
  .footer-section .quick-links {
    column-count: 1;
  }
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-section p i {
  color: #ffffff;
  margin-right: 0.5rem;
  width: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #a8e6cf;
    color: #1e5128;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #27ae60;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Photo Preview */
.photo-preview {
    margin-top: 1rem;
    text-align: center;
}

.photo-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid #27ae60;
    object-fit: cover;
}

.photo-preview .remove-photo {
    display: block;
    margin-top: 0.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.photo-preview .remove-photo:hover {
    background: #c0392b;
}

/* Event Cards with Photos */
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

/* Varejo Styles */
.hero-varejo {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-varejo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.8);
    z-index: 0;
}

.hero-varejo .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-varejo h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-varejo p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
    border-color: #4caf50;
}

.category-icon {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Products Section */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #2e7d32;
    background: transparent;
    color: #2e7d32;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2e7d32;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #2e7d32;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.7rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.6s ease forwards;
}

/* Denuncia Styles */
.hero-denuncia {
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-denuncia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(198, 40, 40, 0.8);
    z-index: 0;
}

.hero-denuncia .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-denuncia h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-denuncia p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.2);
    border-color: #e53935;
}

.info-icon {
    font-size: 3rem;
    color: #c62828;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #c62828;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #c62828;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.denuncia-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e53935;
}

.form-section-title h3 {
    color: #c62828;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
    background-color: #ffebee;
}

.form-group small {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.field-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.field-error::before {
    content: '⚠';
}

/* Checkbox Group */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e53935;
    border-color: #e53935;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* File Upload */
.file-info {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.file-list h4 {
    color: #c62828;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.3rem;
    border-radius: 5px;
}

.file-item.valid {
    background: #e8f5e8;
    color: #2e7d32;
}

.file-item.invalid {
    background: #ffebee;
    color: #c62828;
}

.file-item small.error {
    color: #f44336;
    font-weight: 500;
}

.warning {
    color: #ff9800;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.form-actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

/* Garantias Section */
.garantias-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.garantias-section h2 {
    text-align: center;
    color: #c62828;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.garantia-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.1);
    transition: all 0.3s ease;
}

.garantia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.15);
}

.garantia-item i {
    font-size: 2.5rem;
    color: #c62828;
    margin-bottom: 1rem;
}

.garantia-item h4 {
    color: #c62828;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.garantia-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.protocol-info {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.protocol-number {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-left: 0.5rem;
}

.protocol-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.next-steps {
    margin-top: 1.5rem;
}

.next-steps h4 {
    color: #2e7d32;
    margin-bottom: 0.8rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #4caf50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

.notification.info {
    border-left: 4px solid #2196f3;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success i {
    color: #4caf50;
}

.notification.error i {
    color: #f44336;
}

.notification.info i {
    color: #2196f3;
}

.notification button {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.2rem;
    margin-left: auto;
}

.notification button:hover {
    color: #666;
}

/* Institutional Page Styles */
.institutional-hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.8)), 
                url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1926&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.institutional-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.institutional-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Hero Institucional */
.hero-institucional {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.hero-institucional .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-institucional .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.institutional-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.nav-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-item {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.nav-item:hover {
    border-color: #2e7d32;
    color: #2e7d32;
    transform: translateY(-2px);
}

.nav-item.active {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.institutional-content {
    padding: 60px 0;
}

.content-section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.content-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Cooperativismo Section */
.cooperativismo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #2e7d32;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.principle-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Área de Atuação Section - Nova versão mais atrativa */
.atuacao-hero {
    margin-bottom: 60px;
}

.atuacao-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.map-interactive {
    position: relative;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
}

.map-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(46, 125, 50, 0.1);
    z-index: 1;
}

.map-points {
    position: relative;
    z-index: 2;
    height: 100%;
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-point:hover {
    transform: scale(1.1);
}

.point-1 { top: 45%; left: 35%; } /* Campo do Tenente - Centro */
.point-2 { top: 20%; left: 50%; } /* Curitiba - Norte */
.point-3 { top: 60%; left: 45%; } /* Rio Negro - Sul */
.point-4 { top: 35%; left: 20%; } /* Lapa - Oeste */
.point-5 { top: 50%; left: 60%; } /* Pien - Leste */
.point-6 { top: 40%; left: 40%; } /* Quitandinha - Centro-Norte */

.point-pulse {
    width: 20px;
    height: 20px;
    background: #2e7d32;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.point-pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #2e7d32;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.point-info {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-point:hover .point-info {
    opacity: 1;
    top: -40px;
}

.coverage-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.coverage-circle {
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(46, 125, 50, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.region-info h3 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.region-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.atuacao-stats {
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #2e7d32;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stat-description {
    color: #666;
    font-size: 0.9rem;
}

.atuacao-services {
    margin-top: 60px;
}

.atuacao-services h3 {
    text-align: center;
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-region {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-region:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e8;
}

.region-header i {
    font-size: 1.5rem;
    color: #2e7d32;
}

.region-header h4 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-weight: 500;
}

.service-list li i {
    color: #4caf50;
    font-size: 1rem;
}

/* Animação para contadores */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .atuacao-visual {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-interactive {
        min-height: 300px;
        padding: 30px;
    }
    
    .map-background {
        font-size: 6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .region-highlights {
        align-items: stretch;
    }
    
    .highlight-tag {
        justify-content: center;
    }
}

/* Benefícios Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-category h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.benefit-list li:last-child {
    border-bottom: none;
}

/* Como ser Sócio Section */
.socio-content {
    max-width: 800px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step.active {
    border-left: 5px solid #2e7d32;
    background: #f8f9fa;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.contact-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
}

.contact-btn.secondary {
    background: white;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px; /* espaço entre os itens */
  margin-top: 15px;
}

.req-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.req-item i {
  color: #2e7d32;
  margin-right: 10px;
  font-size: 18px;
}

.req-item span {
  font-size: 16px;
  color: #333;
}

/* Diretoria Section */
.governance-content {
    display: grid;
    gap: 50px;
}

.governance-section h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.member-card h4 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.member-position {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

/* Documentos Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.document-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.document-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.document-card h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.download-btn {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* História Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #2e7d32, #388e3c);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.02);
}

.timeline-item.highlighted {
    transform: scale(1.05);
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 10;
}

.timeline-content h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

/* Search functionality */
.institutional-search {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    width: 250px;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.institutional-search:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Header responsive adjustments */
    .header-container {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .header-actions {
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-varejo h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .retail-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .private-header button {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
    
    .weather-info {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-wrapper {
        flex-direction: column;
    }
    
    .events-nav-btn {
        position: relative;
        margin: 10px 0;
    }
    
    /* Institutional Page Responsive */
    .institutional-hero h1 {
        font-size: 2rem;
    }
    
    .institutional-hero p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .atuacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .atuacao-stats {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-nav-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .nav-card {
        padding: 25px;
    }
    
    .nav-card i {
        font-size: 2.5rem;
    }
    
    .nav-card h4 {
        font-size: 1.2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .institutional-search {
        width: 200px;
        margin: 10px 0 0 0;
    }
    
    /* Contact and Denuncia Mobile */
    .contact-denuncia-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-section,
    .denuncia-section {
        padding: 1.5rem;
    }
    
    .contact-section h3,
    .denuncia-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header extra small screens */
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .btn-login {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
}
