.hero-cta-button{
display:inline-flex;
align-items:center;
gap:0.75rem;
padding:1rem 2.5rem;
background-color:#FBBF24;
color:#000;
font-weight:700;
font-size:1.125rem;
border-radius:9999px;
transition:all 0.3s ease-in-out;
box-shadow:0 10px 20px -5px rgba(251,191,36,0.4);
text-decoration:none;
}
.hero-cta-button:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px -10px rgba(251,191,36,0.6);
background-color:#F59E0B;
}
.donate-button-hero{
display:inline-flex;
align-items:center;
gap:0.75rem;
padding:0.875rem 2rem;
background-color:#558E3E;
color:white;
font-weight:700;
font-size:1.125rem;
border-radius:9999px;
transition:all 0.3s ease-in-out;
box-shadow:0 10px 20px -5px rgba(85,142,62,0.4);
}
.donate-button-hero:hover{
transform:translateY(-4px);
box-shadow:0 14px 28px -5px rgba(85,142,62,0.5);
}

.projects-carousel{
display:flex;
overflow-x:auto;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
scrollbar-width:none;
scroll-behavior:smooth;
gap:2rem;
padding:1rem 0;
}
.projects-carousel::-webkit-scrollbar{
display:none;
}
.project-slide-wrapper{
flex:0 0 85%;
scroll-snap-align:center;
max-width:400px;
}
.project-image-carousel{
position:relative;
width:100%;
height:250px;
overflow:hidden;
border-radius:0.75rem 0.75rem 0 0;
}
.carousel-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1.5s ease-in-out;
}
.carousel-image.active{
opacity:1;
}
.project-card{
background:white;
border-radius:0.75rem;
box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
transition:all 0.4s ease;
overflow:hidden;
height:100%;
display:flex;
flex-direction:column;
}
.project-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);
}
.category-badge{
position:absolute;
top:1rem;
left:1rem;
z-index:10;
padding:0.5rem 1rem;
border-radius:9999px;
font-size:0.75rem;
font-weight:600;
color:white;
backdrop-filter:blur(10px);
box-shadow:0 4px 6px -1px rgba(0,0,0,0.1);
}
.image-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
height:50%;
background:linear-gradient(to top,rgba(0,0,0,0.6),transparent);
z-index:5;
}
.nav-button{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border-radius:50%;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 15px -3px rgba(0,0,0,0.1);
transition:all 0.3s ease;
z-index:20;
border:none;
cursor:pointer;
}
.nav-button:hover{
background:#F27233;
color:white;
transform:translateY(-50%) scale(1.1);
}
.nav-button.prev{
left:-25px;
top:50%;
transform:translateY(-50%);
}
.nav-button.next{
right:-25px;
top:50%;
transform:translateY(-50%);
}
.progress-indicators{
display:flex;
justify-content:center;
gap:0.5rem;
margin-top:2rem;
}
.progress-dot{
width:10px;
height:10px;
border-radius:50%;
background:#D1D5DB;
cursor:pointer;
transition:all 0.3s ease;
}
.progress-dot.active{
background:#F27233;
transform:scale(1.2);
}
@media (min-width:640px){
.project-slide-wrapper{
flex:0 0 45%;
}
}
@media (min-width:1024px){
.project-slide-wrapper{
flex:0 0 30%;
}
.projects-carousel{
gap:2.5rem;
}
}
/* =====================================================
PÁGINA DE PROJETOS - ESTILOS ESPECÍFICOS
===================================================== */
.filter-btn{
transition:all 0.3s ease;
display:inline-flex;
align-items:center;
gap:0.5rem;
}
.filter-btn.active{
background-color:#F37135 !important;
color:white !important;
transform:translateY(-2px);
box-shadow:0 4px 12px rgba(243,113,53,0.3);
}
.filter-btn:hover{
transform:translateY(-1px);
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.project-card{
transition:transform 0.3s ease,opacity 0.3s ease;
opacity:1;
transform:scale(1);
}
.project-card.hidden{
opacity:0;
transform:scale(0.95);
display:none;
}
.project-card:hover{
transform:translateY(-4px);
}
.project-image-carousel{
position:relative;
width:100%;
height:12rem;
overflow:hidden;
border-radius:0.75rem 0.75rem 0 0;
background:linear-gradient(45deg,#f0f9ff 0%,#e0f2fe 100%);
}
.carousel-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1.0s cubic-bezier(0.4,0,0.2,1);
transform:scale(1.05);
}
.carousel-image.active{
opacity:1;
transform:scale(1);
}
.project-image-carousel::after{
content:'';
position:absolute;
bottom:8px;
right:8px;
width:8px;
height:8px;
background:rgba(255,255,255,0.8);
border-radius:50%;
animation:pulse 2s infinite;
z-index:10;
}
@keyframes pulse{
0%,100%{
opacity:0.8;
transform:scale(1);
}
50%{
opacity:0.4;
transform:scale(1.2);
}
}
@media (max-width:640px){
.project-image-carousel{
height:10rem;
}
.filter-btn{
font-size:0.875rem;
padding:0.5rem 1rem;
}
.filter-btn ion-icon{
font-size:1rem;
}
}
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.project-card{
animation:fadeInUp 0.6s ease forwards;
}
.project-card:nth-child(1){animation-delay:0.1s;}
.project-card:nth-child(2){animation-delay:0.2s;}
.project-card:nth-child(3){animation-delay:0.3s;}
.project-card:nth-child(4){animation-delay:0.4s;}
.project-card:nth-child(5){animation-delay:0.5s;}
.project-card:nth-child(6){animation-delay:0.6s;}
@keyframes scroll-left{
from{transform:translateX(0);}
to{transform:translateX(-50%);}
}
.partners-marquee-container{
overflow:hidden;
position:relative;
width:100%;
background:linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);
padding:3rem 0;
border-top:1px solid #e2e8f0;
border-bottom:1px solid #e2e8f0;
-webkit-mask-image:linear-gradient(to right,transparent,white 5%,white 95%,transparent);
mask-image:linear-gradient(to right,transparent,white 5%,white 95%,transparent);
}
.partners-marquee-track{
display:flex;
width:calc(180px * 24);
animation:scroll-left 100s linear infinite;
}
.partners-marquee-track:hover{
animation-play-state:paused;
}
.partners-marquee-item{
flex-shrink:0;
width:180px;
height:120px;
padding:1.5rem;
display:flex;
justify-content:center;
align-items:center;
background-color:rgba(255,255,255,0.8);
margin:0 10px;
border-radius:12px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:all 0.3s ease;
backdrop-filter:blur(10px);
}
.partners-marquee-item:hover{
background-color:white;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
transform:translateY(-5px);
}
.partners-logo{
max-width:140px;
max-height:80px;
width:auto;
height:auto;
object-fit:contain;
filter:grayscale(20%) opacity(85%);
transition:all 0.4s ease;
}
.partners-marquee-item:hover .partners-logo{
filter:grayscale(0%) opacity(100%);
transform:scale(1.05);
}
@media (max-width:768px){
.partners-marquee-container{
padding:2rem 0;
}
.partners-marquee-item{
width:150px;
height:100px;
padding:1rem;
margin:0 8px;
}
.partners-logo{
max-width:110px;
max-height:60px;
}
}
.testimonials-section{
padding:4rem 0;
background-color:white;
}
.testimonials-grid{
display:grid;
grid-template-columns:1fr;
gap:2rem;
margin-top:2.5rem;
}
.testimonial-card{
background-color:#f9fafb;
padding:2rem;
border-radius:0.75rem;
border-left:5px solid #558E3E;
box-shadow:0 4px 6px -1px rgba(0,0,0,0.05);
transition:all 0.3s ease;
}
.testimonial-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 15px -3px rgba(0,0,0,0.1);
}
.testimonial-author{
display:flex;
align-items:center;
gap:1rem;
margin-bottom:1rem;
}
.testimonial-author img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}
.testimonial-author h4{
font-weight:700;
font-size:1.125rem;
color:#1f2937;
}
.testimonial-author span{
font-size:0.875rem;
color:#6b7280;
}
.testimonial-card p{
font-size:1rem;
line-height:1.6;
color:#4b5563;
font-style:italic;
}
.testimonials-slider-container{
position:relative;
overflow:hidden;
}
.testimonials-slider{
display:flex;
transition:transform 0.5s cubic-bezier(0.77,0,0.18,1);
will-change:transform;
}
.testimonial-slide{
flex-shrink:0;
width:100%;
max-width:100%;
padding:0 1rem;
box-sizing:border-box;
}
@media (min-width:768px){
.testimonial-slide{
width:50%;
max-width:50%;
}
}
@media (min-width:1024px){
.testimonial-slide{
padding:0 1.5rem;
}
}
.testimonial-slide > div{
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-slide > div:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.testimonial-slide .rounded-full{
background:linear-gradient(135deg,var(--gradient-from),var(--gradient-to));
box-shadow:0 4px 12px rgba(0,0,0,0.15);
transition:transform 0.3s ease;
}
.testimonial-slide .rounded-full:hover{
transform:scale(1.05);
}
.testimonial-slide svg{
transition:transform 0.2s ease;
}
.testimonial-slide:hover svg{
transform:scale(1.1);
}
#testimonials-pagination-dots button{
width:8px;
height:8px;
border-radius:50%;
background-color:#d1d5db;
transition:all 0.3s ease;
border:none;
cursor:pointer;
}
#testimonials-pagination-dots button.active{
background-color:#f37135;
transform:scale(1.2);
}
#testimonials-pagination-dots button:hover{
background-color:#f37135;
opacity:0.8;
}
#testimonials-prev-btn,
#testimonials-next-btn{
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
#testimonials-prev-btn:hover,
#testimonials-next-btn:hover{
transform:scale(1.05);
box-shadow:0 4px 12px rgba(242,114,51,0.2);
}
#prev-btn,
#next-btn{
position:relative;
z-index:10;
min-width:48px;
min-height:48px;
flex-shrink:0;
transform:translateZ(0);
backface-visibility:hidden;
}
#prev-btn:hover,
#next-btn:hover{
transform:scale(1.05) translateZ(0);
box-shadow:0 8px 20px rgba(242,114,51,0.25);
}
.testimonials-slider-container .flex.items-center.justify-between{
padding:0 1rem;
margin-top:2rem;
min-height:60px;
}
.testimonial-slide{
animation:fadeInUp 0.6s ease-out both;
}
.testimonial-slide:nth-child(1){animation-delay:0.1s;}
.testimonial-slide:nth-child(2){animation-delay:0.2s;}
.testimonial-slide:nth-child(3){animation-delay:0.3s;}
.testimonial-slide:nth-child(4){animation-delay:0.4s;}
.cta-partnership-section{
background-color:#FFFFFF;
padding:2rem 0 5rem 0;
overflow:hidden;
}
.partnership-responsive-grid{
display:flex;
flex-direction:column;
align-items:center;
gap:2rem;
max-width:1280px;
margin:0 auto;
}
.partnership-text-column{
order:1;
text-align:center;
position:relative;
z-index:10;
}
.partnership-section-title-icon{
display:flex;
align-items:center;
justify-content:center;
gap:0.5rem;
margin-bottom:1rem;
}
.partnership-icon{
font-size:1.5rem;
color:#F27233;
}
.partnership-subtitle{
font-family:'Kalam',cursive;
font-size:1.25rem;
font-weight:700;
color:#F27233;
}
.partnership-image-column{
order:2;
position:relative;
width:100%;
max-width:512px;
height:400px;
}
.partnership-main-image-wrapper{
position:relative;
}
.partnership-main-image{
width:100%;
height:auto;
object-fit:cover;
box-shadow:0 25px 50px -12px rgba(0,0,0,0.25);
border-radius:1.5rem;
border:6px solid white;
}
.partnership-circular-image-wrapper{
position:absolute;
width:128px;
height:120px;
bottom:-2rem;
right:-1.5rem;
z-index:20;
}
@media (max-width:480px){
.partnership-circular-image-wrapper{
width:100px;
height:100px;
bottom:-1.5rem;
right:-1rem;
}
}
.partnership-circular-image{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
border-radius:1.5rem;
border:6px solid white;
box-shadow:0 10px 15px -3px rgba(0,0,0,0.1);
background-color:#f8f9fa;
}
.partnership-title{
font-size:2.25rem;
line-height:2.5rem;
font-weight:800;
margin-bottom:0.75rem;
color:#F27233;
text-transform:none;
}
.partnership-text{
margin-bottom:1rem;
color:#F27233;
text-transform:none;
}
.partnership-text-bold{
margin-bottom:2rem;
font-weight:600;
color:#F27233;
text-transform:none;
}
.cta-partnership-button{
background-color:#FFCB2E;
color:black;
font-weight:700;
padding:0.75rem 2rem;
border-radius:0.5rem;
display:inline-flex;
align-items:center;
justify-content:center;
transition:all 0.3s ease;
box-shadow:0 4px 6px -1px rgba(0,0,0,0.1);
transform:perspective(1px) translateZ(0);
}
.cta-partnership-button:hover{
background-color:#F27233 !important;
color:white !important;
transform:scale(1.05);
}
.cta-partnership-button ion-icon{
font-size:1.25rem;
margin:0 0.25rem;
}
@media (min-width:768px){
.cta-partnership-section{
padding:3rem 0 6rem 0;
}
.partnership-responsive-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:3rem;
align-items:center;
}
.partnership-image-column{
order:1;
height:auto;
}
.partnership-text-column{
order:2;
text-align:left;
padding-left:2rem;
}
.partnership-section-title-icon{
justify-content:flex-start;
}
.partnership-circular-image-wrapper{
width:140px;
height:160px;
right:-1rem;
}
.partnership-title{
font-size:3rem;
line-height:1;
}
}
@media (min-width:1024px){
.cta-partnership-section{
padding:4rem 0 7rem 0;
}
.partnership-responsive-grid{
gap:4rem;
padding:0 2rem;
}
.partnership-text-column{
padding-left:3rem;
}
.partnership-circular-image-wrapper{
right:-3rem;
}
}
.dots-pattern{
background-image:radial-gradient(#FBBF24 2px,transparent 2px);
background-size:16px 16px;
}
.transparency-responsive-grid-container{
display:flex;
flex-direction:column;
align-items:center;
gap:4rem;
}
.transparency-text-column{
order:1;
text-align:center;
}
.transparency-image-column{
order:2;
position:relative;
width:100%;
height:500px;
}
.transparency-main-image-wrapper{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:100%;
height:80%;
z-index:10;
}
.transparency-top-image-wrapper{
position:absolute;
width:45%;
height:50%;
top:0;
left:-30px;
z-index:20;
}
.transparency-bottom-image-wrapper{
position:absolute;
width:45%;
height:30%;
bottom:0;
right:-20px;
z-index:20;
}
@media (min-width:768px){
.transparency-responsive-grid-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:2rem;
}
.transparency-image-column{
order:1;
height:550px;
}
.transparency-text-column{
order:2;
text-align:left;
}
.transparency-text-column .justify-center{
justify-content:flex-start;
}
.transparency-main-image-wrapper{
width:75%;
height:80%;
}
.transparency-top-image-wrapper{
width:40%;
height:50%;
top:2rem;
left:0;
}
.transparency-bottom-image-wrapper{
width:40%;
height:50%;
bottom:2rem;
right:0;
}
}
@media (min-width:1024px){
.transparency-responsive-grid-container{
gap:4rem;
}
.transparency-image-column{
height:600px;
}
.transparency-main-image-wrapper{
width:75%;
height:85%;
}
.transparency-top-image-wrapper{
width:176px;
height:224px;
top:0;
left:0;
}
.transparency-bottom-image-wrapper{
width:176px;
height:224px;
bottom:0;
right:0;
}
}
.cta-donation-background{
background-color:#F27233;
background-image:repeating-linear-gradient(
45deg,
transparent,
transparent 35px,
rgba(255,255,255,0.1) 35px,
rgba(255,255,255,0.1) 70px
);}
/* =====================================================
ESTILOS PARA PÁGINA QUEM SOMOS
===================================================== */
.what-we-do-tab-button,
.location-tab-button{
transition:all 0.3s ease;
border-bottom:3px solid transparent;
}
.what-we-do-tab-button.active,
.location-tab-button.active{
border-bottom-color:#F37135;
color:#F37135;
background-color:rgba(243,113,53,0.1);
}
.what-we-do-tab-button:hover,
.location-tab-button:hover{
color:#F37135;
background-color:rgba(243,113,53,0.05);
}
.what-we-do-tab-content,
.location-tab-content{
display:none;
}
.what-we-do-tab-content.active,
.location-tab-content.active{
display:block;
animation:fadeInUp 0.5s ease;
}
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}
@media (max-width:768px){
.what-we-do-tab-button,
.location-tab-button{
font-size:0.9rem;
padding:0.75rem 0.5rem;
}
.what-we-do-tab-content,
.location-tab-content{
padding:1rem;
}
}
/* =====================================================
MODAL DE PREVIEW DE IMAGENS DA EQUIPE
===================================================== */
@media (max-width:640px){
.team-member h4{
font-size:0.875rem !important;
margin-top:0.5rem !important;
}
.team-member p{
font-size:0.75rem !important;
}
}
.team-member{
cursor:pointer;
transition:transform 0.3s ease;
}
.team-member:hover{
transform:translateY(-5px);
}
.team-member img{
transition:all 0.3s ease;
}
.team-member img[src*="Tricia Neves"],
.modal-image[src*="Tricia Neves"]{
object-position:center 40% !important;
}
.team-member img[src*="Antonilda Vieira"],
.modal-image[src*="Antonilda Vieira"]{
object-position:center 25% !important;
}
.team-member img[src*="Eloiza Lorrane"],
.modal-image[src*="Eloiza Lorrane"]{
object-position:center 20% !important;
}
.team-member img[src*="Ronaldo Augusto"],
.modal-image[src*="Ronaldo Augusto"]{
object-position:center 35% !important;
}
.team-member img[src*="BRUNO CLAUDINO"],
.modal-image[src*="BRUNO CLAUDINO"]{
object-position:center 25% !important;
}
.team-member img[src*="ANTONIO MARCOS"],
.modal-image[src*="ANTONIO MARCOS"]{
object-position:center 30% !important;
}
.team-member img[src*="Francisco Bezerra"],
.modal-image[src*="Francisco Bezerra"]{
object-position:center 15% !important;
}
.team-member img{
object-position:center center;
}
.modal-image{
object-position:center center;
}
.team-member:hover img{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.image-modal{
padding:0;
margin:auto;
border:none;
background:transparent;
max-width:none;
max-height:none;
}
.image-modal::backdrop{
background-color:rgba(0,0,0,0.8);
backdrop-filter:blur(5px);
}
.image-modal[open]{
display:flex;
align-items:center;
justify-content:center;
animation:fadeIn 0.3s ease;
}
.modal-content{
position:relative;
max-width:90vw;
max-height:90vh;
background:white;
border-radius:20px;
padding:2rem;
box-shadow:0 25px 50px rgba(0,0,0,0.5);
transform:scale(0.8);
animation:modalAppear 0.3s ease forwards;
}
.modal-image{
width:300px;
height:300px;
object-fit:cover;
border-radius:50%;
border:6px solid #F37135;
margin-bottom:1rem;
}
.modal-info{
text-align:center;
}
.modal-name{
font-size:1.5rem;
font-weight:bold;
color:#1F2937;
margin-bottom:0.5rem;
}
.modal-role{
font-size:1rem;
color:#6B7280;
margin-bottom:1rem;
}
.modal-council{
display:inline-block;
background:linear-gradient(135deg,#F37135,#FFCB2E);
color:white;
padding:0.5rem 1rem;
border-radius:25px;
font-size:0.9rem;
font-weight:600;
}
.close-modal{
position:absolute;
top:1rem;
right:1rem;
background:#F37135;
color:white;
border:none;
width:40px;
height:40px;
border-radius:50%;
font-size:1.2rem;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:all 0.3s ease;
}
.close-modal:hover{
background:#E85D00;
transform:scale(1.1);
}
@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}
@keyframes modalAppear{
from{
transform:scale(0.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}
@media (max-width:768px){
.modal-content{
padding:1.5rem;
margin:1rem;
}
.modal-image{
width:200px;
height:200px;
}
.modal-name{
font-size:1.3rem;
}
}
.fade-in-up{
animation:fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.gradient-orange{
background:linear-gradient(135deg,#F27233 0%,#FF8C42 100%);
}
.gradient-green{
background:linear-gradient(135deg,#10B981 0%,#34D399 100%);
}
.gradient-blue{
background:linear-gradient(135deg,#2563EB 0%,#3B82F6 100%);
}
.gradient-purple{
background:linear-gradient(135deg,#7C3AED 0%,#8B5CF6 100%);
}
.card-info-hover{
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card-info-hover:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px -3px rgba(0,0,0,0.12);
}
/* =====================================================
ESTILOS PARA ABAS DA VILA DO SERTÃO - NOSSA PROGRAMAÇÃO
===================================================== */
.vila-programacao-tab-button{
transition:all 0.3s ease;
border-bottom:3px solid transparent;
border-radius:8px 8px 0 0;
}
.vila-programacao-tab-button.active{
border-bottom-color:#F37135;
color:#F37135;
background-color:rgba(243,113,53,0.1);
}
.vila-programacao-tab-button:hover{
color:#F37135;
background-color:rgba(243,113,53,0.05);
}
.vila-programacao-tab-content{
display:none;
}
.vila-programacao-tab-content.active{
display:block;
}
@media (max-width:768px){
.vila-programacao-tab-button{
font-size:0.875rem;
padding:0.75rem 0.5rem;
flex-direction:column;
gap:0.25rem;
}
.vila-programacao-tab-button ion-icon{
font-size:1.25rem;
}
.vila-programacao-tab-content{
padding:1rem;
}
}
@media (max-width:640px){
.vila-programacao-tab-button{
min-width:120px;
text-align:center;
}
}
/* =====================================================
CORREÇÕES DE LAYOUT PARA VILA DO SERTÃO
===================================================== */
.vila-programacao-tab-content{
width:100%;
margin:0 auto;
box-sizing:border-box;
}
.vila-programacao-tab-content .grid{
width:100%;
box-sizing:border-box;
}
.vila-programacao-tab-content .bg-white{
width:100%;
box-sizing:border-box;
}
.vila-programacao-tab-content .max-w-4xl{
width:100%;
max-width:56rem;
margin-left:auto;
margin-right:auto;
}
.photos-carousel img{
max-width:100%;
height:auto;
display:block;
}
.vila-programacao_tab_content > div:not(:last-child){
margin-bottom:3rem;
}
@media (max-width:1024px){
.vila-programacao-tab-content .lg\:col-span-3,
.vila-programacao-tab-content .lg\:col-span-2{
grid-column:span 1;
}
}
@media (max-width:768px){
.vila-programacao-tab-content{
padding:1rem;
}
.vila-programacao-tab-content .space-y-6 >:not([hidden]) ~:not([hidden]){
margin-top:1.5rem;
}
}
/* =====================================================
CORREÇÕES FINAIS PARA SALA DE REBOCO - VILA DO SERTÃO
===================================================== */
.photos-carousel-container{
position:relative;
padding:0 35px;
max-width:100%;
overflow:hidden;
}
.photos-carousel .swiper-slide{
height:400px;
overflow:hidden;
border-radius:0.75rem;
}
.photos-carousel .swiper-slide img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
transition:transform 0.3s ease;
}
.photos-carousel .swiper-slide:hover img{
transform:scale(1.05);
}
.photos-carousel .swiper-button-next,
.photos-carousel .swiper-button-prev{
color:#1F2937;
background-color:rgba(255,255,255,0.9);
border-radius:9999px;
width:32px;
height:32px;
box-shadow:0 4px 6px rgba(0,0,0,0.1);
transition:all 0.3s ease;
margin-top:0;
}
.photos-carousel .swiper-button-next:hover,
.photos-carousel .swiper-button-prev:hover{
background-color:#F27233;
color:white;
transform:scale(1.1);
}
.photos-carousel .swiper-button-next:after,
.photos-carousel .swiper-button-prev:after{
font-size:4px;
font-weight:900;
}
@media (max-width:768px){
.photos-carousel-container{
padding:0 15px;
}
.photos-carousel .swiper-slide{
height:300px;
}
.photos-carousel .swiper-button-next,
.photos-carousel .swiper-button-prev{
width:28px;
height:28px;
}
.photos-carousel .swiper-button-next:after,
.photos-carousel .swiper-button-prev:after{
font-size:4px;
}
}
@media (max-width:640px){
.photos-carousel-container{
padding:0 8px;
}
.photos-carousel .swiper-slide{
height:250px;
}
}
.vila_programacao_tab_content *{
max-width:100%;
box-sizing:border-box;
}
.vila_programacao_tab_content .container,
.vila_programacao_tab_content .max-w-4xl,
.vila_programacao_tab_content .max-w-6xl{
max-width:100%;
margin-left:auto;
margin-right:auto;
}
/* =====================================================
ESTILOS PARA ABAS DE IMPACTO - SALA DE REBOCO
===================================================== */
.impact-tab-button{
transition:all 0.3s ease;
cursor:pointer;
background-color:transparent;
color:#6B7280;
border:none;
}
.impact-tab-button.active{
background-color:#F37135;
color:white;
box-shadow:0 2px 4px rgba(243,113,53,0.2);
}
.impact-tab-button:hover:not(.active){
background-color:rgba(243,113,53,0.1);
color:#F37135;
}
.impact-tab-content{
display:none;
}
.impact-tab-content.active{
display:block;
}
.video-wrapper{
position:relative;
padding-bottom:56.25% !important;
height:0 !important;
overflow:hidden;
border-radius:1rem;
box-shadow:0 20px 25px -5px rgb(0 0 0 / 0.1),0 8px 10px -6px rgb(0 0 0 / 0.1);
border:4px solid white;
background-color:#000;
min-height:300px;
z-index:10;
}
.video-wrapper iframe{
position:absolute !important;
top:0 !important;
left:0 !important;
width:100% !important;
height:100% !important;
border:0 !important;
z-index:15;
}
.location-card{
transition:all 0.3s ease;
}
.location-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 50px -12px rgba(0,0,0,0.25);
}
#conheca-vila .space-y-20 > div:not(:last-child){
margin-bottom:3rem;
}
@media (min-width:1024px){
#conheca-vila .space-y-20 > div:not(:last-child){
margin-bottom:5rem;
}
}
@media (max-width:768px){
#conheca-vila .video-wrapper{
min-height:250px;
margin-bottom:1rem;
}
#conheca-vila h2{
font-size:2rem;
margin-bottom:1.5rem;
}
}
/* =====================================================
ESTILOS PARA ABAS DE GALERIA - ROTA DO SOL
===================================================== */
.gallery-tab-button{
transition:all 0.3s ease;
cursor:pointer;
background-color:transparent;
color:#6B7280;
border:none;
}
.gallery-tab-button.active{
background-color:#F37135;
color:white;
box-shadow:0 2px 4px rgba(243,113,53,0.2);
}
.gallery-tab-button:hover:not(.active){
background-color:rgba(243,113,53,0.1);
color:#F37135;
}
.gallery-tab-pane{
display:none;
}
.gallery-tab-pane.active{
display:block;
}
.gallery-carousel-container{
margin:0 auto;
max-width:100%;
padding:0 20px;
}
.gallery-carousel{
position:relative;
overflow:hidden;
border-radius:1rem;
margin:0 auto;
}
.gallery-carousel .swiper-slide img{
width:100%;
height:250px;
object-fit:cover;
border-radius:0.75rem;
box-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1),0 2px 4px -2px rgb(0 0 0 / 0.1);
transition:transform 0.3s ease;
}
.gallery-carousel .swiper-slide img:hover{
transform:scale(1.02);
}
@media (max-width:768px){
.gallery-carousel .swiper-slide img{
height:200px;
}
}
/* =====================================================
ESTILOS PARA PÁGINA DE DOAÇÕES - SERTÃO DA ESPERANÇA
===================================================== */
.donation-hero{
background-attachment:fixed;
background-position:center;
background-repeat:no-repeat;
background-size:cover;
}
.donation-cta-button{
background:linear-gradient(135deg,#F1C40F 0%,#E6B800 100%);
box-shadow:0 8px 25px rgba(241,196,15,0.4);
position:relative;
overflow:hidden;
color:#000 !important;
border:2px solid #F1C40F;
}
.donation-cta-button::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
transition:left 0.8s;
}
.donation-cta-button:hover::before{
left:100%;
}
.donation-cta-button:hover{
box-shadow:0 12px 35px rgba(241,196,15,0.6);
transform:translateY(-2px) scale(1.03);
background:linear-gradient(135deg,#E6B800 0%,#D4AC00 100%);
}
@keyframes slideInLeft{
from{
opacity:0;
transform:translateX(-50px);
}
to{
opacity:1;
transform:translateX(0);
}
}
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.donation-hero h1{
animation:slideInLeft 1s ease-out 0.4s both;
}
.donation-hero p{
animation:slideInLeft 1s ease-out 0.6s both;
}
.donation-cta-button{
animation:slideInLeft 1s ease-out 0.8s both;
}
@media (max-width:768px){
.donation-hero{
background-attachment:scroll;
min-height:100vh;
}
.donation-cta-button{
font-size:1.125rem;
padding:1rem 2rem;
}
}
@media (max-width:640px){
.donation-hero h1{
font-size:2rem;
line-height:1.2;
}
.donation-hero p{
font-size:1rem;
line-height:1.5;
}
}
@media (min-width:1024px){
.donation-hero{
background-attachment:fixed;
}
}
.scroll-indicator{
animation:bounce 2s infinite;
}
@keyframes bounce{
0%,20%,53%,80%,100%{
transform:translate3d(0,0,0);
}
40%,43%{
transform:translate3d(0,-10px,0);
}
70%{
transform:translate3d(0,-5px,0);
}
90%{
transform:translate3d(0,-2px,0);
}
}
/* =====================================================
SEÇÃO FAÇA PARTE - PÁGINA DOE
===================================================== */
.partnership-responsive-grid{
display:flex;
flex-direction:column;
align-items:center;
gap:4rem;
}
.partnership-text-column{
order:1;
text-align:center;
}
.partnership-image-column{
order:2;
position:relative;
width:100%;
max-width:32rem;
height:auto;
min-height:300px;
}
.partnership-circular-image{
position:absolute;
width:7rem;
height:7rem;
bottom:-2rem;
right:-1rem;
z-index:20;
}
.partnership-circular-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:10%;
}
.partnership-btn{
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.partnership-btn:hover{
background-color:#F27233 !important;
color:white !important;
transform:scale(1.05) translateY(-2px);
box-shadow:0 10px 25px rgba(242,114,51,0.3);
}
@media (min-width:768px){
.partnership-responsive-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:3rem;
}
.partnership-image-column{
order:1;
height:auto;
}
.partnership-text-column{
order:2;
text-align:left;
}
.partnership-circular-image{
width:9rem;
height:9rem;
bottom:-2.5rem;
right:-1.5rem;
}
}
@media (min-width:1024px){
.partnership-responsive-grid{
gap:4rem;
}
.partnership-circular-image{
width:10rem;
height:10rem;
bottom:-3rem;
right:-2rem;
}
}
.partnership-image-column .relative img{
transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.partnership-image-column .relative:hover img{
transform:scale(1.02);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}
.partnership-circular-image{
transition:transform 0.3s ease;
}
.partnership-circular-image:hover{
transform:scale(1.05) rotate(5deg);
}
.partnership-circular-image img{
width:100%;
height:100%;
object-fit:contain;
object-position:center;
background-color:#f8f9fa;
}
.partnership-image-column img{
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}
.partnership-circular-image img{
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}
.donation-plan-card{
transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
box-shadow:0 4px 6px rgba(0,0,0,0.1);
}
.donation-plan-card:hover{
box-shadow:0 20px 40px rgba(0,0,0,0.15);
transform:translateY(-5px) scale(1.02);
}
.donation-plan-btn{
position:relative;
overflow:hidden;
}
.donation-plan-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;
}
.donation-plan-btn:hover::before{
left:100%;
}
.donation-plan-card{
animation:fadeInUp 0.6s ease-out both;
}
.donation-plan-card:nth-child(1){animation-delay:0.1s;}
.donation-plan-card:nth-child(2){animation-delay:0.2s;}
.donation-plan-card:nth-child(3){animation-delay:0.3s;}
.donation-plan-card:nth-child(4){animation-delay:0.4s;}
@media (max-width:640px){
.donation-plan-card{
margin-bottom:1rem;
}
}
@media (min-width:640px) and (max-width:1023px){
.donation-plan-card:nth-child(even){
animation-delay:0.3s;
}
}
.donation-plan-card svg{
transition:transform 0.3s ease;
}
.donation-plan-card:hover svg{
transform:scale(1.1) rotate(5deg);
}
.donation-plan-card p{
line-height:1.6;
}
.donation-plan-card strong{
color:#374151;
}
@media (max-width:768px){
.testimonials-slider-container .flex.items-center.justify-between{
flex-direction:column;
gap:1rem;
align-items:center;
}
#prev-btn,
#next-btn{
min-width:44px;
min-height:44px;
}
#pagination-dots{
order:1;
}
.testimonials-slider-container .flex.gap-3{
order:2;
}
}
@media (max-width:640px){
.testimonials-slider-container .flex.items-center.justify-between{
padding:0 0.5rem;
}
#prev-btn,
#next-btn{
min-width:40px;
min-height:40px;
}
#prev-btn ion-icon,
#next-btn ion-icon{
font-size:1.125rem;
}
}
#contact-form{
max-width:100%;
}
#contact-form input,
#contact-form select,
#contact-form textarea{
font-family:'Inter',sans-serif;
font-size:1rem;
line-height:1.5;
background-color:#ffffff;
border:2px solid #e5e7eb;
border-radius:0.5rem;
transition:all 0.2s ease-in-out;
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus{
outline:none;
border-color:#F27233;
box-shadow:0 0 0 3px rgba(242,114,51,0.1);
background-color:#fefefe;
}
#contact-form label{
font-family:'Inter',sans-serif;
color:#374151;
font-weight:600;
}
#contact-form button[type="submit"]{
font-family:'Inter',sans-serif;
min-height:56px;
font-weight:700;
letter-spacing:0.025em;
box-shadow:0 10px 25px rgba(242,114,51,0.2);
}
#contact-form button[type="submit"]:hover{
box-shadow:0 15px 35px rgba(242,114,51,0.3);
}
#contact-form button[type="submit"]:disabled{
opacity:0.7;
cursor:not-allowed;
transform:none !important;
}
#contact-form input[type="checkbox"]:checked{
background-color:#F27233;
border-color:#F27233;
}
@media (max-width:768px){
#contact-form{
padding:1.5rem;
}
#contact-form input,
#contact-form select,
#contact-form textarea{
font-size:0.95rem;
padding:0.75rem;
}
#contact-form button[type="submit"]{
min-height:52px;
font-size:1rem;
}
}
@keyframes slideInUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.contact-form-container{
animation:slideInUp 0.8s ease-out;
}
.vila_programacao_tab_content[data-content="sala-reboco"]{
width:100%;
max-width:100%;
overflow:visible;
}
.vila_programacao_tab_content[data-content="sala-reboco"] .bg-gradient-to-br{
display:block;
width:100%;
}
.vila_programacao_tab_content[data-content="sala-reboco"] .grid{
display:grid;
}
.vila_programacao_tab_content[data-content="sala-reboco"] .video-wrapper{
max-width:100%;
margin:0 auto;
}
.vila_programacao_tab_content[data-content="sala-reboco"] .photos-carousel-container{
width:100%;
overflow:hidden;
}
.vila_programacao_tab_content #impact-tabs-content{
width:100%;
}
.vila_programacao_tab_content .impact-tab-content{
width:100%;
}
.vila-hero-image{
width:100%;
height:auto;
max-height:500px;
min-height:400px;
object-fit:cover;
object-position:center;
border-radius:1.5rem;
box-shadow:0 25px 50px -12px rgba(0,0,0,0.25);
border:6px solid white;
image-rendering:-webkit-optimize-contrast;
image-rendering:-moz-crisp-edges;
image-rendering:crisp-edges;
image-rendering:pixelated;
image-rendering:high-quality;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
-webkit-transform:translateZ(0) scale(1.0001);
transform:translateZ(0) scale(1.0001);
will-change:transform;
-webkit-perspective:1000px;
perspective:1000px;
filter:none;
-webkit-filter:none;
}
@media (min-width:1024px){
.vila-hero-image{
max-height:600px;
min-height:500px;
}
}
@media (max-width:768px){
.vila-hero-image{
max-height:400px;
min-height:300px;
max-width:500px;
margin:0 auto;
}
}
@media (max-width:480px){
.vila-hero-image{
max-height:350px;
min-height:250px;
max-width:400px;
}
}
.vila-hero-image{
image-orientation:from-image;
-webkit-optimize-contrast:none;
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
-ms-interpolation-mode:bicubic;
}
.lazy-load{
opacity:0;
transition:opacity 0.3s ease;
}
.lazy-load.loaded{
opacity:1;
}
.carousel-image{
width:100%;
height:100%;
object-fit:cover;
transition:opacity 0.3s ease;
background-color:#f3f4f6;
min-height:200px;
}
.carousel-image:not(.loaded){
background-image:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%);
background-size:200% 100%;
animation:loading 1.5s infinite;
}
@keyframes loading{
0%{
background-position:200% 0;
}
100%{
background-position:-200% 0;
}
}

/* =============================================== */
/* HERO SECTION - MODERN STYLES */
/* =============================================== */

/* Badge de Impacto */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Título com Gradiente */
.hero-gradient-text {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    position: relative;
}

.hero-gradient-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

/* Título com Gradiente Aprimorado - Cores do Projeto */
.hero-gradient-text-enhanced {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 40%, #F97316 80%, #FB923C 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    position: relative;
    text-shadow: 0 0 80px rgba(251, 191, 36, 0.3);
    filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.4));
}

/* Versão com mais contraste para melhor legibilidade */
@media (max-width: 768px) {
    .hero-gradient-text-enhanced {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) 
                drop-shadow(0 4px 20px rgba(251, 191, 36, 0.5));
    }
}

/* Botões de Ação - Design Profissional com Cores do Projeto */
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #F97316 100%);
    background-size: 200% 100%;
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px -5px rgba(251, 191, 36, 0.5), 0 0 0 1px rgba(251, 191, 36, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 50%, #F59E0B 100%);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px -10px rgba(251, 191, 36, 0.7), 0 0 0 2px rgba(251, 191, 36, 0.3);
    background-position: 100% 0;
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta-secondary:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.6);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px -10px rgba(251, 191, 36, 0.3), 0 0 60px rgba(251, 191, 36, 0.2);
}

.hero-cta-secondary:hover::before {
    opacity: 1;
}

.hero-cta-secondary:active {
    transform: translateY(-2px) scale(1.01);
}

/* =============================================== */
/* FILTROS DE CATEGORIA DO BLOG                    */
/* =============================================== */
.category-filter {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #4B5563; /* text-gray-600 */
    background-color: #F3F4F6; /* bg-gray-100 */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-filter:hover {
    background-color: #E5E7EB; /* bg-gray-200 */
    color: #1F2937; /* text-gray-800 */
}

.category-filter.active {
    background-color: #F37135; /* bg-primary */
    color: white;
    border-color: #F37135; /* border-primary */
    box-shadow: 0 4px 14px 0 rgba(243, 113, 53, 0.3);
}

/* ===================================
   BLOG SINGLE PAGE STYLES
   =================================== */

/* Hero Section para Blog Single */
#post-hero {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Conteúdo do Post */
.prose {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.75;
}

.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #F37135;
    font-family: 'Kalam', cursive;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-family: 'Kalam', cursive;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose strong {
    font-weight: 600;
    color: #1f2937;
}

.prose blockquote {
    border-left: 4px solid #F37135;
    padding-left: 1.5rem;
    margin: 2rem 0;
    background: #FFF7ED;
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-style: italic;
    color: #92400e;
}

.prose img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin: 2rem 0;
}

/* Animações de loading */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

/* Hover effects */
.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    #post-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .prose {
        font-size: 1rem;
    }
}

/* Links no conteúdo */
.prose a {
    color: #F37135;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.prose a:hover {
    border-bottom-color: #F37135;
}

/* Botões de compartilhamento arredondados */
.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.share-btn ion-icon {
    font-size: 20px;
}

/* =============================================== */
/* CLASSES UTILITÁRIAS - SCROLL PERSONALIZADO */
/* =============================================== */

/* Classe para containers com scroll horizontal */
.scroll-horizontal {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #F27233 #f1f5f9;
}

.scroll-horizontal::-webkit-scrollbar {
    height: 8px;
}

.scroll-horizontal::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.scroll-horizontal::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #F27233, #FFCB2E);
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.scroll-horizontal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #e55a1f, #f4c430);
}

/* Classe para scroll suave */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Classe para containers de galeria */
.gallery-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 114, 51, 0.7) transparent;
}

.gallery-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: rgba(242, 114, 51, 0.7);
    border-radius: 3px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(242, 114, 51, 1);
}

/* Scroll invisível (para carrosséis) */
.scroll-hidden {
    scrollbar-width: none;
}

.scroll-hidden::-webkit-scrollbar {
    display: none;
}

/* Carousel de Depoimentos - Dots */
#testimonials-pagination-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

#testimonials-pagination-dots button.active {
    background-color: #f37135;
    transform: scale(1.2);
}

#testimonials-pagination-dots button:hover {
    background-color: #f37135;
    opacity: 0.8;
}

/* Testimonials Slider */
.testimonials-slider-container {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}