:root {
--primary-color: #9333ea;
--primary-light: #b15ef8;
--primary-dark: #7c25d0;
--primary-transparent: rgba(147, 51, 234, 0.1);
--secondary-color: #f8fafc;
--dark-color: #0f172a;
--light-color: #f1f5f9;
--text-color: #334155;
--gray-color: #64748b;
--white: #ffffff;
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
--shadow-hover: 0 20px 25px -5px rgba(147, 51, 234, 0.15);
--radius: 12px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
--gradient-light: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(147, 51, 234, 0.03) 100%);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

h1 {
font-size: 3rem;
background: linear-gradient(to right, var(--primary-color), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.5px;
}

h2 {
font-size: 2.5rem;
position: relative;
display: inline-block;
}

h2::after {
content: '';
position: absolute;
width: 60px;
height: 4px;
background: var(--gradient);
bottom: -10px;
left: 0;
border-radius: 4px;
}

h3 {
font-size: 1.4rem;
margin-bottom: 0.8rem;
}

p {
margin-bottom: 1.2rem;
font-size: 1rem;
color: var(--gray-color);
line-height: 1.6;
}

a {
text-decoration: none;
color: inherit;
}

.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}

.section-padding {
padding: 80px 0;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 28px;
background: var(--gradient);
color: var(--white);
border-radius: var(--radius);
font-weight: 600;
border: none;
cursor: pointer;
transition: var(--transition);
text-align: center;
position: relative;
overflow: hidden;
font-size: 0.95rem;
letter-spacing: 0.3px;
box-shadow: 0 5px 15px rgba(147, 51, 234, 0.2);
}

.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: 0.5s;
}

.btn:hover::before {
left: 100%;
}

.btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

.btn-outline {
background: transparent;
border: 2px solid var(--primary-color);
color: var(--primary-color);
box-shadow: none;
}

.btn-outline:hover {
background: var(--gradient);
color: var(--white);
}

.section-title {
text-align: center;
margin-bottom: 60px;
}

.section-title h2 {
text-align: center;
}

.section-title h2::after {
left: 50%;
transform: translateX(-50%);
}

.section-title p {
max-width: 700px;
margin: 20px auto 0;
font-size: 1.1rem;
}

/* Header */
header {
background-color: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
transition: var(--transition);
}

header.scrolled {
padding: 5px 0;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
transition: var(--transition);
}

.logo {
font-size: 1.8rem;
font-weight: 800;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 8px;
}

.logo span {
color: var(--dark-color);
}

.logo i {
font-size: 1.6rem;
}

.nav-links {
display: flex;
gap: 35px;
}

.nav-links a {
font-weight: 600;
transition: var(--transition);
position: relative;
font-size: 0.95rem;
}

.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: var(--gradient);
bottom: -5px;
left: 0;
border-radius: 2px;
transition: var(--transition);
}

.nav-links a:hover {
color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.mobile-menu-btn {
display: none;
font-size: 1.4rem;
background: none;
border: none;
cursor: pointer;
color: var(--dark-color);
z-index: 1001;
}

/* Hero Section */
.hero {
padding: 150px 0 80px;
background: var(--gradient-light);
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0) 70%);
top: -200px;
right: -100px;
z-index: 0;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 60px;
}

.hero-text p {
font-size: 1.1rem;
margin-bottom: 30px;
max-width: 90%;
}

.hero-btns {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.hero-image {
position: relative;
}

.hero-image img {
max-width: 100%;
border-radius: var(--radius);
box-shadow: var(--shadow);
transform: perspective(1000px) rotateY(-8deg);
transition: var(--transition);
}

.hero-image:hover img {
transform: perspective(1000px) rotateY(0deg);
}

.hero-image::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: var(--gradient);
border-radius: var(--radius);
top: 15px;
left: 15px;
z-index: -1;
opacity: 0.2;
}

/* Services Section */
.services {
background-color: var(--white);
position: relative;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.service-card {
background-color: var(--white);
border-radius: var(--radius);
padding: 35px 30px;
box-shadow: var(--shadow-light);
transition: var(--transition);
text-align: left;
border: 1px solid rgba(147, 51, 234, 0.08);
position: relative;
overflow: hidden;
z-index: 1;
height: 100%;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--gradient);
transform: scaleY(0);
transform-origin: top;
transition: transform 0.4s ease;
z-index: 2;
}

.service-card:hover::before {
transform: scaleY(1);
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
border-color: rgba(147, 51, 234, 0.2);
}

.service-icon {
font-size: 2.5rem;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
display: inline-block;
transition: var(--transition);
}

.service-card:hover .service-icon {
transform: scale(1.1);
}

.service-card h3 {
margin-bottom: 15px;
transition: var(--transition);
}

.service-card:hover h3 {
color: var(--primary-color);
}

.service-card p {
font-size: 0.95rem;
margin-bottom: 0;
}

/* Testimonials Section - SEM BOLINHAS */
.testimonials {
background-color: var(--secondary-color);
position: relative;
overflow: hidden;
}

.testimonials-wrapper {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}

.testimonials-carousel {
position: relative;
overflow: hidden;
width: 100%;
}

.testimonials-container {
display: flex;
transition: transform 0.5s ease-in-out;
gap: 30px;
}

.testimonial-card {
background-color: var(--white);
border-radius: var(--radius);
padding: 45px 40px;
box-shadow: var(--shadow-light);
flex: 0 0 calc(33.333% - 20px);
min-width: calc(33.333% - 20px);
border: 1px solid rgba(147, 51, 234, 0.1);
position: relative;
display: flex;
flex-direction: column;
min-height: 320px;
}

.testimonial-card::before {
content: '"';
position: absolute;
top: 25px;
right: 30px;
font-size: 5rem;
color: var(--primary-color);
opacity: 0.15;
font-family: serif;
line-height: 1;
font-weight: bold;
z-index: 0;
}

.testimonial-rating {
display: flex;
gap: 5px;
margin-bottom: 25px;
color: #FFC107;
position: relative;
z-index: 1;
}

.testimonial-rating i {
font-size: 1.2rem;
}

.testimonial-text {
font-style: italic;
margin-bottom: 25px;
font-size: 1.05rem;
line-height: 1.7;
position: relative;
z-index: 1;
flex-grow: 1;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
position: relative;
z-index: 1;
margin-top: auto;
}

.testimonial-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
background: var(--gradient-light);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: var(--primary-color);
font-weight: 700;
flex-shrink: 0;
}

.testimonial-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info h4 {
margin-bottom: 5px;
font-size: 1.1rem;
}

.author-info p {
margin: 0;
font-size: 0.9rem;
color: var(--gray-color);
}

.carousel-controls {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 50px;
}

.carousel-btn {
width: 55px;
height: 55px;
border-radius: 50%;
background: var(--white);
border: 2px solid var(--primary-color);
color: var(--primary-color);
font-size: 1.3rem;
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
background: var(--gradient);
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

/* REMOVIDO: .carousel-dots e .carousel-dot */

/* Plans Section */
.plans {
background-color: var(--white);
position: relative;
}

.plans-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.plan-card {
background-color: var(--white);
border-radius: var(--radius);
padding: 40px 30px;
box-shadow: var(--shadow-light);
transition: var(--transition);
text-align: center;
border: 2px solid transparent;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}

.plan-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-light);
opacity: 0;
transition: var(--transition);
z-index: 0;
}

.plan-card:hover::before {
opacity: 1;
}

.plan-card:hover {
transform: translateY(-10px);
border-color: var(--primary-color);
box-shadow: var(--shadow-hover);
}

.plan-card.popular {
border-color: var(--primary-color);
transform: translateY(-5px);
}

.plan-card.popular:hover {
transform: translateY(-15px);
}

.popular-tag {
position: absolute;
top: -1px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient);
color: var(--white);
padding: 6px 20px;
border-radius: 20px;
font-weight: 700;
font-size: 0.8rem;
box-shadow: var(--shadow);
letter-spacing: 0.5px;
z-index: 2;
white-space: nowrap;
}

.plan-name {
font-size: 1.5rem;
font-weight: 800;
color: var(--dark-color);
margin-bottom: 10px;
position: relative;
z-index: 1;
}

.plan-description {
font-size: 0.95rem;
color: var(--gray-color);
margin-bottom: 25px;
position: relative;
z-index: 1;
}

.plan-price {
font-size: 2.5rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 30px;
position: relative;
z-index: 1;
}

.plan-price span {
font-size: 1rem;
color: var(--gray-color);
font-weight: 400;
}

.plan-features {
list-style: none;
text-align: left;
margin-bottom: 40px;
position: relative;
z-index: 1;
flex-grow: 1;
}

.plan-features li {
margin-bottom: 12px;
padding-left: 28px;
position: relative;
font-size: 0.95rem;
}

.plan-features li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--primary-color);
font-weight: bold;
font-size: 1rem;
}

.plan-btn {
width: 100%;
padding: 14px;
font-size: 1rem;
font-weight: 600;
position: relative;
z-index: 1;
margin-top: auto;
}

/* About Section */
.about {
background-color: var(--secondary-color);
position: relative;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.about-text h2 {
color: var(--dark-color);
}

.about-text h2 span {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-top: 40px;
}

.stat-item {
text-align: center;
padding: 25px 15px;
background: var(--gradient-light);
border-radius: var(--radius);
transition: var(--transition);
}

.stat-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.stat-number {
font-size: 2.2rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: block;
margin-bottom: 5px;
line-height: 1;
}

.stat-text {
font-weight: 600;
color: var(--dark-color);
font-size: 1rem;
}

.about-image {
position: relative;
}

.about-image img {
max-width: 100%;
border-radius: var(--radius);
box-shadow: var(--shadow);
transform: perspective(1000px) rotateY(8deg);
transition: var(--transition);
}

.about-image:hover img {
transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
content: '';
position: absolute;
width: 150px;
height: 150px;
background: var(--gradient);
border-radius: 20px;
top: -15px;
left: -15px;
z-index: -1;
opacity: 0.2;
transform: rotate(45deg);
}

.about-image::after {
content: '';
position: absolute;
width: 120px;
height: 120px;
background: var(--gradient);
border-radius: 15px;
bottom: -15px;
right: -15px;
z-index: -1;
opacity: 0.15;
transform: rotate(45deg);
}

/* Portfolio Section */
.portfolio {
background-color: var(--white);
position: relative;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.portfolio-item {
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
height: 280px;
}

.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-hover);
}

.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: var(--transition);
}

.portfolio-item:hover img {
transform: scale(1.05);
}

.portfolio-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
color: var(--white);
padding: 25px 20px 20px;
transform: translateY(100%);
transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
transform: translateY(0);
}

.portfolio-overlay h3 {
color: var(--white);
margin-bottom: 8px;
font-size: 1.3rem;
}

.portfolio-overlay p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 0;
font-size: 0.9rem;
}

/* CTA Section */
.cta {
padding: 100px 0;
text-align: center;
background: var(--gradient);
color: var(--white);
position: relative;
overflow: hidden;
}

.cta::before {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
top: -150px;
right: -80px;
}

.cta::after {
content: '';
position: absolute;
width: 250px;
height: 250px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
bottom: -120px;
left: -80px;
}

.cta h2 {
color: var(--white);
margin-bottom: 30px;
position: relative;
z-index: 1;
}

.cta h2::after {
background: var(--white);
left: 50%;
transform: translateX(-50%);
}

.cta p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 40px;
color: rgba(255, 255, 255, 0.9);
position: relative;
z-index: 1;
}

.cta .btn {
background: var(--white);
color: var(--primary-color);
font-size: 1.05rem;
padding: 16px 40px;
position: relative;
z-index: 1;
}

.cta .btn:hover {
background: var(--light-color);
}

/* Footer - REDUZIDO */
footer {
background-color: var(--dark-color);
color: var(--white);
padding: 60px 0 20px; /* Reduzido de 80px 0 30px */
position: relative;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 40px;
margin-bottom: 40px; /* Reduzido de 50px */
}

.footer-col h3 {
color: var(--white);
margin-bottom: 35px; /* Reduzido de 25px */
font-size: 1.3rem; /* Reduzido de 1.4rem */
position: relative;
}

.footer-col h3::after {
content: '';
position: absolute;
width: 40px;
height: 3px;
background: var(--gradient);
bottom: -13px;
left: 0;
border-radius: 3px;
}

.footer-col p {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem; /* Reduzido de 0.95rem */
line-height: 1.5;
}

.social-links {
display: flex;
gap: 10px; /* Reduzido de 12px */
margin-top: 15px; /* Reduzido de 20px */
flex-wrap: wrap;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px; /* Reduzido de 42px */
height: 38px; /* Reduzido de 42px */
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: var(--transition);
font-size: 0.9rem; /* Reduzido de 1rem */
flex-shrink: 0;
}

.social-links a:hover {
background: var(--gradient);
transform: translateY(-3px);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 10px; /* Reduzido de 12px */
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
transition: var(--transition);
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem; /* Reduzido de 0.95rem */
}

.footer-links a i {
font-size: 0.65rem; /* Reduzido de 0.7rem */
color: var(--primary-color);
transition: var(--transition);
}

.footer-links a:hover {
color: var(--primary-light);
padding-left: 5px;
}

.footer-links a:hover i {
transform: translateX(3px);
}

.copyright {
text-align: center;
padding-top: 25px; /* Reduzido de 30px */
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
font-size: 0.85rem; /* Reduzido de 0.9rem */
}

.copyright p {
margin-bottom: 0;
}

/* Floating Elements */
.floating-element {
position: absolute;
border-radius: 50%;
background: var(--gradient);
opacity: 0.05;
z-index: 0;
}

/* Animation Classes */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
}

.testimonials-wrapper {
    padding: 0 30px;
}
}

@media (max-width: 992px) {
h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

.hero-content, .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
}

.hero-text, .about-text {
    order: 1;
}

.plan-card.popular {
    transform: none;
}

.plan-card.popular:hover {
    transform: translateY(-10px);
}

.testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    padding: 40px 35px;
}

.testimonials-wrapper {
    padding: 0 20px;
}

footer {
    padding: 50px 0 15px;
}

.footer-content {
    gap: 30px;
    margin-bottom: 30px;
}
}

@media (max-width: 768px) {
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    z-index: 1000;
}

.nav-links.active {
    right: 0;
}

.mobile-menu-btn {
    display: block;
}

.hero-btns {
    flex-direction: column;
    align-items: stretch;
}

.hero-btns .btn {
    width: 100%;
    margin-bottom: 10px;
}

.plans-grid, .services-grid, .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 60px 0;
}

.hero {
    padding: 130px 0 60px;
}

.cta {
    padding: 80px 0;
}

.testimonial-card {
    padding: 35px 30px;
}

.testimonial-card::before {
    font-size: 4rem;
    top: 20px;
    right: 25px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

footer {
    padding: 40px 0 15px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
}
}

@media (max-width: 576px) {
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

.stat-number {
    font-size: 1.8rem;
}

.plan-price {
    font-size: 2rem;
}

.popular-tag {
    padding: 5px 15px;
    font-size: 0.75rem;
}

.service-card, .plan-card {
    padding: 30px 25px;
}

.testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.testimonials-wrapper {
    padding: 0 15px;
}

.testimonial-card {
    padding: 30px 25px;
}

.carousel-controls {
    margin-top: 40px;
}
}
/* Featured Posts Section - Somente Fotos */
.featured-posts {
    background-color: #f9f9f9;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.post-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s 
cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 360px;
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.post-card:hover .post-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgb(140 82 255) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.post-card:hover .post-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.post-card:hover .overlay-content {
    transform: translateY(0);
}

.post-category {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #0d6efd;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.post-card:hover .zoom-icon {
    transform: scale(1);
}

.zoom-icon:hover {
    background-color: #0d6efd;
    color: white;
    transform: scale(1.1);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .featured-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .post-card {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-card {
        height: 450px;
    }
}
