* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

section {
    scroll-snap-align: start;
    scroll-margin-top: 80px;
}

body {
    scroll-snap-type: y proximity;
    font-family: 'Poppins';
    margin: 0;
    scroll-behavior: smooth;
}

section {
    height: 100vh;
    padding: 100px 5% 0;
    scroll-margin-top: 80px;
}

.header {
    background-color: #f6faf4;
    padding: 30px 0;
    border-bottom: 1px solid #e4e4e4;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    color: #2a2a2a;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
    margin-left: 3%;
}

.page-description {
    color: #5a5a5a;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: 6%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 30%, transparent);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.footer {
    background-color: #f6faf4;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid #e4e4e4;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.accordion-financieros {
  max-width: 500px;
  margin: 0 auto 2rem auto;
  background: #f6faf4;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(104, 111, 66, 0.08);
  padding: 0.5rem 0;
}

.accordion-header {
  width: 100%;
  background: #686f42;
  color: #fff;
  border: none;
  outline: none;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}

.accordion-header[aria-expanded="true"],
.accordion-header:focus {
  background: #2c3e50;
  color: #f6faf4;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(104, 111, 66, 0.04);
  margin: 0 0 0.5rem 0;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-panel.active {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

.download-btn {
  background: #686f42;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.download-btn:hover {
  background: #2c3e50;
}

.coming-soon {
  color: #747448;
  font-style: italic;
  font-size: 1rem;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
        margin: 30px auto;
    }
    
    .image-label {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-description {
        font-size: 1rem;
        margin-left: 3%;
    }
}

@media (max-width: 600px) {
  .accordion-financieros {
    max-width: 98vw;
    padding: 0.5rem 0.2rem;
  }
  .accordion-header, .accordion-panel {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}