/* ========================================
   INDEX.CSS - Página Inicial
   ======================================== */

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Background da Imagem */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.carousel-slide.active .slide-background {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Overlay Escuro */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.75) 0%, rgba(45, 122, 82, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Conteúdo do Slide */
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    color: var(--branco);
}

/* Título */
.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

/* Subtítulo */
.slide-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botões do Slide */
.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn-slide {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.btn-slide i {
    font-size: 22px;
}

/* Botão Primário (Verde) */
.btn-primary {
    background: linear-gradient(135deg, var(--verde-primario) 0%, var(--verde-secundario) 100%);
    color: var(--branco);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 95, 63, 0.5);
    border-color: var(--dourado);
}

/* Botão Secundário (Outline Branco) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--branco);
    border: 2px solid var(--branco);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--branco);
    color: var(--verde-primario);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Botão WhatsApp Hero */
.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
}

.btn-whatsapp-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Setas de Navegação */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--verde-primario);
    border-color: var(--dourado);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.6);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--branco);
    width: 70px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ========================================
   RESPONSIVIDADE DO CAROUSEL
   ======================================== */

@media (max-width: 992px) {
    .hero-carousel {
        height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .btn-slide {
        padding: 15px 28px;
        font-size: 13px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 550px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
    }
    
    .btn-slide {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 13px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .indicator {
        width: 35px;
        height: 4px;
    }
    
    .indicator.active {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 500px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .btn-slide {
        padding: 14px 18px;
        font-size: 12px;
    }
    
    .btn-slide i {
        font-size: 18px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* ========================================
   SEÇÃO SOBRE A QUALITÁ
   ======================================== */

.about-section {
    background-color: var(--cinza-claro);
    padding: 80px 0;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--verde-primario);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--texto-escuro);
    margin-bottom: 20px;
    text-align: justify;
}

.about-description strong {
    color: var(--verde-primario);
    font-weight: 700;
}

.about-cta {
    font-size: 18px;
    margin-top: 30px;
    color: var(--texto-escuro);
}

.link-saiba-mais {
    color: var(--verde-secundario);
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transicao);
}

.link-saiba-mais:hover {
    color: var(--dourado);
    text-decoration: none;
}

/* ========================================
   SEÇÃO DE AÇÕES RÁPIDAS (ÍCONES)
   ======================================== */

.quick-actions {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Fundo Verde com Gradiente Elegante */
.actions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde-primario) 0%, var(--verde-secundario) 50%, var(--verde-claro) 100%);
    z-index: 0;
}

/* Padrão geométrico sutil no fundo */
.actions-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.3;
}

.container-actions {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

/* Cards de Ação */
.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-10px);
}

/* Círculo com Profundidade 3D */
.action-circle {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.action-card:hover .action-circle {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transform: scale(1.08);
}

.circle-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.2),
        -20px -20px 60px rgba(255, 255, 255, 0.8),
        inset 5px 5px 10px rgba(0, 0, 0, 0.05),
        inset -5px -5px 10px rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.action-card:hover .circle-icon {
    box-shadow: 
        25px 25px 70px rgba(0, 0, 0, 0.25),
        -25px -25px 70px rgba(255, 255, 255, 0.9),
        inset 8px 8px 15px rgba(0, 0, 0, 0.08),
        inset -8px -8px 15px rgba(255, 255, 255, 1);
}

/* Ícone */
.circle-icon i {
    font-size: 70px;
    color: var(--verde-primario);
    transition: all 0.4s ease;
}

.action-card:hover .circle-icon i {
    color: var(--verde-secundario);
    transform: scale(1.1) rotate(5deg);
}

/* Título da Ação */
.action-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Descrição da Ação */
.action-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 220px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVIDADE - SEÇÕES
   ======================================== */

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .container-actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .action-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-icon i {
        font-size: 60px;
    }
    
    .action-title {
        font-size: 14px;
    }
    
    .action-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 15px;
        text-align: center;
    }
    
    .quick-actions {
        padding: 70px 0;
    }
    
    .container-actions {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .action-circle {
        width: 170px;
        height: 170px;
    }
    
    .circle-icon i {
        font-size: 65px;
    }
    
    .action-title {
        font-size: 16px;
    }
    
    .action-description {
        font-size: 14px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-cta {
        font-size: 14px;
    }
    
    .action-circle {
        width: 160px;
        height: 160px;
    }
    
    .circle-icon i {
        font-size: 60px;
    }
}

/* ========================================
   SEÇÃO DE DEPOIMENTOS
   ======================================== */

.testimonials-section {
    background-color: var(--cinza-claro);
    padding: 100px 0;
}

.container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--verde-primario);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

/* Carrossel de Depoimentos */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    min-height: 350px;
}

/* Card de Depoimento */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--branco);
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

/* Ícone de Aspas */
.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-primario), var(--verde-secundario));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.3);
}

.testimonial-icon i {
    font-size: 28px;
    color: var(--branco);
}

/* Texto do Depoimento */
.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--texto-escuro);
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

/* Autor do Depoimento */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid var(--cinza-medio);
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-claro), var(--verde-secundario));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.author-avatar i {
    font-size: 32px;
    color: var(--branco);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: var(--cinza-escuro);
    font-weight: 500;
}

/* Setas de Navegação */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--branco);
    border: 2px solid var(--verde-primario);
    border-radius: 50%;
    color: var(--verde-primario);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:hover {
    background: var(--verde-primario);
    color: var(--branco);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Indicadores */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    background: var(--cinza-medio);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: var(--verde-primario);
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(26, 95, 63, 0.4);
}

.testimonial-indicator:hover {
    background: var(--verde-secundario);
}

/* ========================================
   RESPONSIVIDADE - DEPOIMENTOS
   ======================================== */

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 30px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .testimonial-card {
        padding: 40px 35px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 26px;
    }
    
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        min-height: 400px;
    }
    
    .testimonial-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .testimonial-icon i {
        font-size: 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-avatar i {
        font-size: 28px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-role {
        font-size: 13px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 22px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
    }
    
    .testimonials-carousel {
        padding: 0 45px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ========================================
   SEÇÃO DE BLOG - ÚLTIMAS POSTAGENS
   ======================================== */

.blog-section {
    background-color: var(--branco);
    padding: 100px 0;
}

.container-blog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--verde-primario);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

/* Carrossel de Blog */
.blog-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Cards de Blog */
.blog-card {
    background: linear-gradient(145deg, var(--verde-primario) 0%, var(--verde-secundario) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(26, 95, 63, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Efeito de padrão no fundo */
.blog-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 95, 63, 0.5);
}

.blog-card-content {
    position: relative;
    z-index: 1;
}

/* Título do Card */
.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 60px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Excerpt/Resumo */
.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    min-height: 90px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* Link "Leia Mais" */
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dourado);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--branco);
    text-shadow: 0 2px 8px rgba(196, 154, 60, 0.5);
}

.blog-card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(5px);
}

/* Setas de Navegação do Blog */
.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--branco);
    border: 2px solid var(--verde-primario);
    border-radius: 50%;
    color: var(--verde-primario);
    font-size: 18px;
    cursor: pointer;
    display: none; /* Mostrar apenas no mobile */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-arrow:hover {
    background: var(--verde-primario);
    color: var(--branco);
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: -60px;
}

.blog-next {
    right: -60px;
}

/* Indicadores do Blog */
.blog-indicators {
    display: none; /* Mostrar apenas no mobile */
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-indicator {
    width: 10px;
    height: 10px;
    background: var(--cinza-medio);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: var(--verde-primario);
    width: 30px;
    border-radius: 10px;
}

/* Botão "Ver Todas as Postagens" */
.blog-cta {
    text-align: center;
}

.btn-blog-all {
    display: inline-block;
    background: linear-gradient(135deg, var(--verde-primario) 0%, var(--verde-secundario) 100%);
    color: var(--branco);
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-blog-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 63, 0.6);
    border-color: var(--dourado);
}

/* ========================================
   RESPONSIVIDADE - BLOG
   ======================================== */

@media (max-width: 992px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    
    .blog-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .blog-card {
        padding: 30px 25px;
    }
    
    .blog-card-title {
        font-size: 18px;
        min-height: 55px;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
        min-height: 85px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 26px;
    }
    
    .blog-carousel {
        padding: 0 60px;
    }
    
    .blog-wrapper {
        display: block;
        position: relative;
    }
    
    .blog-card {
        display: none;
        padding: 35px 30px;
    }
    
    .blog-card.active {
        display: block;
    }
    
    .blog-arrow {
        display: flex;
    }
    
    .blog-prev {
        left: 0;
    }
    
    .blog-next {
        right: 0;
    }
    
    .blog-indicators {
        display: flex;
    }
    
    .btn-blog-all {
        padding: 16px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 22px;
    }
    
    .blog-carousel {
        padding: 0 50px;
    }
    
    .blog-card {
        padding: 30px 25px;
    }
    
    .blog-card-title {
        font-size: 17px;
        min-height: auto;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .blog-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-blog-all {
        padding: 14px 35px;
        font-size: 13px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--branco);
    position: relative;
}

/* Seção Principal do Footer */
.footer-main {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, var(--verde-primario) 0%, #1a4f35 50%, #0f3323 100%);
    position: relative;
    overflow: hidden;
}

/* Padrão geométrico no fundo */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%);
    background-size: 80px 140px;
    opacity: 0.4;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Colunas do Footer */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Títulos do Footer */
.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--dourado);
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mapa */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.footer-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Lista de Links */
.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 12px;
    color: var(--dourado);
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--dourado);
    padding-left: 8px;
}

.footer-link:hover i {
    transform: translateX(5px);
}

/* Texto do Footer */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.footer-text strong {
    color: var(--dourado);
    font-weight: 700;
}

/* Botão de Contato no Footer */
.btn-footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-top: 15px;
    align-self: flex-start;
}

.btn-footer-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.btn-footer-contact i {
    font-size: 20px;
}

/* Redes Sociais */
.footer-social {
    margin-top: 30px;
}

.footer-social-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--branco);
    color: var(--verde-primario);
    transform: translateY(-5px) rotate(10deg);
    border-color: var(--dourado);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Footer Bottom - Copyright */
.footer-bottom {
    background: #0f0f0f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright strong {
    color: var(--dourado);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--dourado);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
    }
}

/* ========================================
   RESPONSIVIDADE - FOOTER
   ======================================== */

@media (max-width: 992px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .container-footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-map-column {
        grid-column: 1 / -1;
    }
    
    .footer-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .container-footer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title {
        display: block;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .btn-footer-contact {
        align-self: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .container-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 15px;
    }
    
    .footer-text {
        font-size: 13px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .btn-footer-contact {
        width: 100%;
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-bottom-link {
        font-size: 12px;
    }
}
