@import url('variables.css');
@import url('components/header.css');
@import url('components/footer.css');

.mobile-menu-toggle { display: none; }


/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-green {
    background: var(--green-color);
    color: var(--white);
}

.btn-green:hover {
    transform: translateY(-2px);
}

.btn-red {
    background: var(--red-color);
    color: var(--white);
}

.btn-red:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow-color);
    color: var(--text-color);
}

.btn-yellow:hover {
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue-color);
    color: var(--white);
}

.btn-blue:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--blue-color);
    color: var(--white);
}

.btn-dark:hover {
    transform: translateY(-2px);
}

html, body {
    font-family: "Sora", sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.2rem;
    overflow-x: hidden;
    width: 100%;
}

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

.title-underline {
    width: 100px;
    height: 3px;
    margin-bottom: 20px;
}

.title-underline.center {
    margin: 10px auto 40px;
}

/* Hero Section */
.hero {
    background-image: url('../img/banner-2025.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 540px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    position: relative;
}

.hero-label {
    background: var(--yellow-color);
    color: var(--text-color);
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.1;
    position: relative;
}

.hero-subtitle {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

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

.main-image {
    height: 285px;
    opacity: 0;
    animation: fadeInUpHero 1.2s ease-out forwards;
    transition: transform 0.2s ease;
}

.hero-image-link:hover .main-image {
    transform: scale(1.02);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: "Loved by the King", cursive;
    text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
    font-size: 56px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--red-color);
}

.about .title-underline {
    background: repeating-linear-gradient(
        to right,
        var(--red-color) 0,
        var(--red-color) 5px,
        transparent 5px,
        transparent 10px
    );
}

.about-text p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background-image: url(../img/bg-green.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item h4,
.stat-item h3 {
  display: inline-block;
  margin: 0;
}

.stat-item h3 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item h4 {
  font-size: 18px;
  margin-right: 6px;
}

.stat-item > div {
  display: flex;
  align-items: baseline; /* alinha verticalmente pelo texto */
  justify-content: center;
  gap: 6px;
}

.stat-item p {
    font-size: 18px;
    line-height: 1.6;
}

/* Workshops Section */
.workshops {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.section-header h2 {
    font-family: "Loved by the King", cursive;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--green-color);
}

.section-header p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.workshops-container {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.workshops-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.workshops-slider > * {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.workshop-card { display: flex; flex-direction: column; height: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.workshop-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.workshop-card h3 {
    font-family: "Sora", sans-serif;
    padding: 20px 20px 5px;
    font-size: 24px;
}

.workshop-card p { flex-grow: 1;
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px auto;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--green-color);
}

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

.btn {
    text-decoration: none !important;
}

.btn-nav {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: var(--green-color);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav svg.arrow-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

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


/* Help Section */
.help {
    background: linear-gradient(135deg, var(--yellow-color) 0%, #ffa000 100%);
    /*background-image: url(../assets/img/bg-yellow.jpg);*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.help::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50" fill="none" stroke="%23fff" stroke-width="0.5" opacity="0.1"/></svg>');*/
    background: url('../img/bg-transparent.png'); /* custom-line by Tullio */
    animation: wave 50s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.help h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.help p {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.help .btn {
    position: relative;
    z-index: 1;
    color: var(--text-color);
    background-color: var(--white);
}

/* News Section */
.news {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.news h2 {
    font-family: "Loved by the King", cursive;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--blue-color);
}

.news .title-underline {
    background: repeating-linear-gradient(
        to right,
        var(--blue-color) 0,
        var(--blue-color) 5px,
        transparent 5px,
        transparent 10px
    );
}

.news p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.news-grid a {
    text-decoration: none;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #999;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.4;
}

/* Institutional Section */
.institutional {
    background-image: url(../img/bg-blue.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.institutional h2 {
    font-family: "Loved by the King", cursive;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: var(--white);
}

.institutional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
/* Dropdown mobile styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin-top: 10px;
        padding-left: 20px;
        background: var(--light-gray);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 13px;
    }
}



/* =========================================================================
   PÁGINA: SOBRE NÓS
   ========================================================================= */

/* Hero Banner da página Sobre */
.page-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-about {
    background-image: url('../img/hero-about.jpg');
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.02;
}

.breadcrumbs {
    font-size: 14px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--yellow-color);
}

.breadcrumbs .separator {
    margin: 0 15px;
}

/* Utilitários específicos da página */
.text-yellow {
    color: var(--yellow-color);
    font-weight: bold;
    text-transform: uppercase;
}

.mt-4 {
    margin-top: 30px;
}

/* Seção de Objetivos e Identificação */
.about-details {
    padding: 80px 0;
    background: var(--white);
}

.about-details-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-details-text {
    flex: 1;
}

.about-details-text h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.about-details-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-details-image {
    flex: 1;
}

.about-details-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Seção Missão e Visão */
.mission-vision {
    background-image: url('../img/bg-green.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--white);
}

.mission-vision-grid {
    display: flex;
    gap: 60px;
}

.mv-card {
    flex: 1;
}

.mv-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

/* Resumo Histórico */
.history-section {
    padding: 80px 0;
    background: var(--white);
}

.history-section h3 {
    font-size: 16px;
    margin-bottom: 30px;
}

.history-columns {
    column-count: 2;
    column-gap: 40px;
    margin-bottom: 40px;
}

.history-columns p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.discrete-divider {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 40px auto;
    width: 80%;
}

.history-footer p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.board-signatures {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.signature-right {
    text-align: right;
}

.signature h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.signature .role {
    font-size: 14px;
    display: block;
}

/* Responsividade Sobre */
@media (max-width: 768px) {
    .about-details-grid,
    .mission-vision-grid {
        flex-direction: column;
        gap: 40px;
    }

    .history-columns {
        column-count: 1;
    }
}

/* =========================================================================
   PÁGINA: DIRETORIA
   ========================================================================= */

.board-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

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

.board-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.board-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.board-card h3 {
    font-size: 18px;
    color: var(--text-color);
    padding: 20px 20px 5px;
}

.board-card .role {
    font-size: 14px;
    display: block;
    padding: 0 20px 20px;
}

/* =========================================================================
   PÁGINA: ESTRUTURA
   ========================================================================= */

.gallery-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 24px;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: blur(4px) brightness(0.7);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Modal Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
}

.gallery-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-caption {
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 15px 0;
    font-size: 20px;
    font-family: "Sora", sans-serif;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--yellow-color);
    text-decoration: none;
}

/* =========================================================================
   PÁGINA: OFICINAS
   ========================================================================= */

.workshops-page-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.workshops-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* =========================================================================
   PÁGINA: ESPAÇOS PARA LOCAÇÕES
   ========================================================================= */

.rental-section {
    padding: 80px 0 40px 0;
    background: var(--light-gray);
}

.rental-block {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
}

.rental-block.reverse {
    flex-direction: row-reverse;
}

.rental-content {
    flex: 1;
}

.rental-title {
    font-family: 'Loved by the King', cursive;
    text-transform: uppercase;
    font-size: 56px;
    color: var(--blue-color);
    margin-bottom: 30px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pricing-card h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.pricing-group {
    margin-bottom: 15px;
}

.pricing-group h4 {
    font-size: 16px;
    color: var(--blue-color);
    margin-bottom: 8px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

.items-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.items-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--yellow-color);
    font-weight: bold;
}

.price-highlight {
    font-size: 24px;
    font-weight: bold;
    color: var(--green-color);
    margin-bottom: 20px;
}

.features-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.features-list li {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #444;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.features-list li i {
    color: var(--green-color);
    margin-right: 5px;
}

.rental-image {
    flex: 1;
}

.rental-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.rental-block:last-child {
    margin-bottom: 0;
}

.contact-inline-link {
    color: var(--yellow-color);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-inline-link:hover {
    transform: scale(1.1);
    color: var(--yellow-color);
}

@media (max-width: 992px) {
    .rental-block,
    .rental-block.reverse {
        flex-direction: column;
    }
    
    .pricing-grid {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .rental-content,
    .rental-image,
    .pricing-card {
        width: 100%;
    }
}


/* =========================================================================
   PÁGINA: NOTÍCIAS
   ========================================================================= */

.news-page-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.news-page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.news-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.news-main-content .workshops-page-grid {
    margin-top: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a, .pagination span.current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.pagination a {
    background: var(--white);
    color: var(--text-color);
    border: 1px solid #ddd;
}

.pagination a:hover {
    background: var(--blue-color);
    color: var(--white);
    border-color: var(--blue-color);
}

.pagination span.current {
    background: var(--blue-color);
    color: var(--white);
    border: 1px solid var(--blue-color);
}

.pagination span.dots {
    color: #999;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Sidebar styling */
.news-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
}

.sidebar-widget h3 {
    font-family: 'Loved by the King', cursive;
    font-size: 32px;
    color: var(--blue-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--yellow-color);
    padding-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.sidebar-widget-spaced {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .news-page-layout {
        grid-template-columns: 1fr;
    }
}


.featured-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.featured-card-link:hover {
    transform: translateX(5px);
}

.featured-card-link:hover h4 {
    color: var(--blue-color);
}

.featured-news-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.featured-news-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.featured-news-card h4 {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
    font-family: "Sora", sans-serif;
    transition: color 0.3s ease;
}

.category-tags {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f4f8fb;
    border: 1px solid #d9e8f3;
    color: #5d6b75;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.category-tag:hover {
    background: var(--blue-color);
    border-color: var(--blue-color);
    color: var(--white);
    transform: translateY(-1px);
}

.category-tag-active {
    background: var(--blue-color);
    border-color: var(--blue-color);
    color: var(--white);
}

.category-tag-static {
    cursor: default;
}

.category-tag-static:hover {
    background: #f4f8fb;
    border-color: #d9e8f3;
    color: #5d6b75;
    transform: none;
}

.sidebar-empty-state {
    margin-top: 18px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================================
   PÁGINA: NOTÍCIA INTERNA (LEITURA)
   ========================================================================= */

.single-news-article {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.single-news-header h2 {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    color: var(--blue-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-lead {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.news-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-meta i {
    margin-right: 5px;
    color: var(--green-color);
}

.single-news-image {
    margin-bottom: 35px;
}

.image-caption {
    font-size: 12px;
    color: #888;
    text-align: right;
    margin-top: 8px;
    font-style: italic;
}

.single-news-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 500px;
}

.single-news-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.single-news-content > *:last-child {
    margin-bottom: 0;
}

.single-news-content h2,
.single-news-content h3,
.single-news-content h4 {
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 18px;
}

.single-news-content ul,
.single-news-content ol {
    margin: 0 0 25px 22px;
    color: var(--text-color);
    line-height: 1.8;
}

.single-news-content li {
    margin-bottom: 8px;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.empty-content-card {
    max-width: 100%;
    text-align: center;
}

.empty-content-card .single-news-content p {
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .single-news-article {
        padding: 25px 20px;
    }
    
    .single-news-header h2 {
        font-size: 26px;
    }
    
    .news-lead {
        font-size: 16px;
    }
}

/* =========================================================================
   PÁGINA: TRANSPARÊNCIA
   ========================================================================= */

.transparency-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.transparency-content {
    max-width: 1000px;
    margin: 0 auto;
}

.transparency-content .section-title {
    font-family: 'Loved by the King', cursive;
    font-size: 56px;
    color: var(--blue-color);
    text-align: center;
    margin-bottom: 20px;
}

.transparency-content .section-desc {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.accordion-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Sora", sans-serif;
}

.accordion-header:hover {
    color: var(--blue-color);
}

.accordion-header.active {
    color: var(--blue-color);
    background: #fdfdfd;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--yellow-color);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body-inner {
    padding: 0 25px 25px 25px;
}

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

.document-links li {
    margin-top: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.document-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.document-links a {
    text-decoration: none;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.document-links a i {
    color: #e23e36; /* PDF Red Color */
    font-size: 24px;
}

.document-links a:hover {
    color: var(--blue-color);
}

/* =========================================================================
   PÁGINA: DOAÇÃO (LAYOUT LIMPO)
   ========================================================================= */

.donation-section-clean {
    padding: 80px 0;
    background: var(--white);
}

.donation-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.donation-item {
    padding: 20px 0;
}

.donation-item.border-bottom {
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.donation-subtitle {
    display: block;
    color: var(--yellow-color);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.donation-item h3 {
    font-family: "Sora", sans-serif;
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.donation-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.cnpj-highlight {
    font-size: 24px;
    color: var(--text-color);
}

.donation-buttons-solid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.btn-yellow-solid {
    background: var(--yellow-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-yellow-solid:hover {
    background: #e69500;
}

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

.donation-text-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.donation-text-list li strong {
    color: var(--text-color);
    display: inline-block;
    min-width: 90px;
}

@media (max-width: 992px) {
    .donation-grid-clean {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .donation-item.border-bottom {
        border-bottom: none;
        padding-bottom: 0;
    }
    .donation-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .donation-item:last-child {
        border-bottom: none;
    }
}

.help-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.help-text {
    flex: 2;
}

.help-text h2 {
    margin-bottom: 0;
    font-size: 24px;
}

.help-action {
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .help-layout {
        flex-direction: column;
        text-align: center;
    }
    .help-text h2 {
        font-size: 30px;
        line-height: 1;
    }
    .help-action {
        text-align: center;
    }

    .help-action .btn {
        font-size: 17px;
    }
}

/* =========================================================================
   PÁGINA: CONTATO
   ========================================================================= */

.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--yellow-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    color: var(--yellow-color);
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feedback {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.form-feedback-success {
    background: #edf8f1;
    color: #1f6b3e;
    border: 1px solid #bfe4cb;
}

.form-feedback-warning {
    background: #fff7e8;
    color: #8a5a00;
    border: 1px solid #f0d59c;
}

.form-feedback-error {
    background: #fff1f0;
    color: #a12b22;
    border: 1px solid #efc1bd;
}

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

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-color);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}













/* =========================================================================
   DESIGN RESPONSIVO (MOBILE)
   ========================================================================= */

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        height: auto;
        padding: 40px 0;
        flex-direction: column;
        text-align: center;
    }
    
    .main-image {
        height: 205px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    /* Header & Menu Mobile */
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    .navigation {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, visibility 0.28s ease;
    }

    .navigation.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        max-height: 80vh;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .navigation li {
        width: 100%;
    }

    .navigation a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
        background: #f9f9f9;
        padding-left: 20px;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }

    /* Workshop Section */
    .workshops-grid {
        grid-template-columns: 1fr;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Institutional Section */
    .institutional-grid {
        grid-template-columns: 1fr;
    }

    /* News Section */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .credits-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .credits-left, .credits-right {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .main-image {
        height: 150px;
    }
}

/* Institutional Cards */
.institutional-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    color: var(--text-color);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.institutional-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--yellow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 32px;
    color: var(--white);
}

.institutional-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.institutional-card p {
    font-size: 16px;
    color: #666 !important;
    margin-bottom: 25px;
    flex: 1;
}

.news-grid a {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* Fix for Back to Top and Footer */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--yellow-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* hidden by default, shown via JS */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background: var(--blue-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Ensure Institutional Grid is always 3 columns on desktop */
.institutional-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

@media (max-width: 992px) {
    .institutional-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Final Footer adjustments */
.credits-bar {
    width: 100%;
    margin-top: 0;
}

/* Custom UI Fixes */
.about-text h2, .section-header h2, .news h2, .institutional h2 {
    line-height: 0.9;
}

@media (max-width: 1024px) {
    .workshops-slider > * {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 50px;
    }

    .about {
        padding: 8px 0 60px 0;
    }
    
    .about-text .title-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image {
        margin-bottom: 12px;
    }

    .about-text h2,
    .section-header h2,
    .news h2,
    .institutional h2 {
        line-height: 1.08;
    }
    
    .workshops-slider > * {
        flex: 0 0 calc(100% - 20px);
    }
}
