* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}


body {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

main {
    width: 100%;
    min-height: calc(100vh - 181);
    flex: 1;
}

/* Sections */
section {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 0;
    padding: 0;
    scroll-margin-top: 80px;
}

.section-content{
    width: 100%;
    max-width: 1400px;
    zoom: .85;
    padding: 60px 40px 80px 40px;
    margin: 0;
}

h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #1a5928 0%, #2d7a3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    margin: 1.5rem auto;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
}

/* Header */
header {
    background: linear-gradient(135deg, #1a5928 0%, #2d7a3e 50%, #3a9952 100%);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    text-align: left;
    text-decoration: none;
    gap: 15px;
}

.logo img{
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* Menu Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Slideshow */
.hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide1 {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.85), rgba(45, 122, 62, 0.85), rgba(37, 25, 12, 0.85)),
                radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.3), transparent),
                radial-gradient(circle at 80% 50%, rgba(139, 69, 19, 0.3), transparent),
                #1a5928;
}

.slide2 {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.85), rgba(49, 33, 16, 0.85)),
                radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.3), transparent),
                radial-gradient(circle at 70% 60%, rgba(45, 122, 62, 0.3), transparent),
                #654321;
}

.slide3 {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.85), rgba(37, 25, 12, 0.85), rgba(255, 230, 0, 0.85)),
                radial-gradient(circle at 40% 30%, rgba(255, 237, 78, 0.4), transparent),
                radial-gradient(circle at 60% 70%, rgba(139, 69, 19, 0.3), transparent),
                #2d7a3e;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .05;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a5928;
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    animation: fadeInUp 1.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

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


/* Sobre */
.sobre {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #2d7a3e 0%, #ffd700 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(45, 122, 62, 0.3);
    position: relative;
    overflow: hidden;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Turmas */
.turmas {
    background: linear-gradient(135deg, #f8f8f8 0%, #e9e9e9 100%);
}

.turmas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.turma-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border-top: 5px solid #2d7a3e;
    position: relative;
    overflow: hidden;
}

.turma-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    border-radius: 50%;
}

.turma-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(45, 122, 62, 0.2);
    border-top-color: #ffd700;
}

.turma-card h3 {
    color: #1a5928;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
}

.turma-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Galeria */
.galeria {
    background: linear-gradient(135deg, #1a5928 0%, #2d7a3e 50%, #3a9952 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.galeria .section-content{
    margin-top: 10px;
}

.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15), transparent),
                radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.15), transparent);
}

.galeria h2 {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.galeria-item {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.galeria-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.galeria-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 89, 40, 0.7), rgba(255, 215, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.galeria-item:hover::before {
    opacity: 1;
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    transform: translateY(100%);
    transition: transform 0.4s;
    z-index: 2;
}

.galeria-item:hover .galeria-caption {
    transform: translateY(0);
}

.galeria-img1 {
    background: linear-gradient(135deg, #2d7a3e, #654321);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.galeria-img2 {
    background: linear-gradient(135deg, #ffd700, #2d7a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.galeria-img3 {
    background: linear-gradient(135deg, #654321, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.galeria-img4 {
    background: linear-gradient(135deg, #3a9952, #654321);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.galeria-img5 {
    background: linear-gradient(135deg, #ffd700, #1a5928);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.galeria-img6 {
    background: linear-gradient(135deg, #2d7a3e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* Vídeo */
.video {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.video .section-content{
    margin-top: 10px;
}

.video::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.1), transparent);
    border-radius: 50%;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #1a5928, #2d7a3e);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(26, 89, 40, 0.95), rgba(45, 122, 62, 0.95)),
                radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.2), transparent);
    color: white;
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 15px 60px rgba(255, 215, 0, 0.8);
    }
}

.video-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    padding: 0 2rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.video-description {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Projetos Sociais */
.projetos {
    background: linear-gradient(135deg, #654321 0%, #8b5a2b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.projetos::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
}

.projetos h2 {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.projeto-card {
    background: rgba(255,255,255,0.12);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.projeto-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.projeto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Produtos */
.produtos {
    background: linear-gradient(135deg, #f8f8f8 0%, #e9e9e9 100%);
    padding: 0;
}

.produtos .section-content{
    margin-top: 10px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.produto-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border: 3px solid transparent;
}

.produto-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(45, 122, 62, 0.25);
    border-color: #ffd700;
}

.produto-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #654321, #2d7a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.produto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.produto-info h3 {
    font-size: 1.5rem;
    color: #1a5928;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.produto-price {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a5928 0%, #2d7a3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    margin: 1.2rem 0;
}

.buy-button {
    background: #1a5928;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a5928;
}

/* Depoimentos */
.depoimentos {
    /*background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);*/
    background: linear-gradient(135deg, #f8f8f8 0%, #e9e9e9 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.depoimento-card {
    background: rgb(255, 255, 255);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s;
    border-left: 5px solid #2d7a3e;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.depoimento-card::before {
    content: '"';
    font-size: 6rem;
    color: #2d7a3e;
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.2;
    font-weight: 900;
}

.depoimento-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.depoimento-autor {
    font-weight: 800;
    color: #1a5928;
    font-size: 1.1rem;
}

/* Parceiros */
.parceiros {
    background: linear-gradient(135deg, #f8f8f8 0%, #e9e9e9 100%);
    background: linear-gradient(135deg, #ffc400 0%, #ffdf4e 100%);
    position: relative;
    overflow: hidden;
}

.parceiros::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
    border-radius: 50%;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.parceiro-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.parceiro-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.parceiro-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(45, 122, 62, 0.2);
    border-color: #ffd700;
}

.parceiro-item:hover::before {
    opacity: 1;
}

.parceiro-item div:first-child{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.parceiro-logo {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.parceiro-logo img{
    max-width: 100%;
    max-height: 85px;
}

.parceiro-item:hover .parceiro-logo {
    transform: scale(1.1);
}

.parceiro-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a5928;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Contato */
.contato {
    background: linear-gradient(135deg, #2d7a3e 0%, #1a5928 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contato .section-content{
    margin-top: 10px;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.15), transparent),
                radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.15), transparent);
}

.contato h2 {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contato-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.contato-item a{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: white;
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5928;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5928;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.form-container {
    background: rgba(255,255,255,0.12);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-container h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.form-container input {
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-container input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f2915 0%, #1a3820 100%);
    color: white;
    text-align: center;
    padding: 2.5rem;
    font-size: 1rem;
}

footer a{
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1a5928 0%, #2d7a3e 100%);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 2rem;
        transition: left 0.4s ease;
        z-index: 999;
        overflow: hidden;
        overflow-y: auto;
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.7s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.8s; }
    .nav-links.active li:nth-child(9) { transition-delay: 0.9s; }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
}

.popup{
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup span{
    position: absolute;
    font-size: 2rem;
    top: 10px;
    right: 20px;
    color: white;
    font-weight: bold;
    text-shadow:
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

.popup span:hover{
    cursor: pointer;
    color: red;    
}

.popup a{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup img{
    max-width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
}

.whats {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: fixed;
    z-index: 1;
    bottom: 80px;
    right: 20px;
    transition: 0.5s ease-in-out;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.6));
    background-color: #0f2915;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whats:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.whats img{
    width: 35px;
}

.top{
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 1;
    position: fixed;
    bottom: 15px;
    right: 17px;
    transition: 0.5s ease-in-out;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.6));
    background-color: #0f2915;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.top img{
    width: 40px;
}

.mais{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mais button{
    width: 180px;
    height: 40px;
    font-size: .8rem;
    margin-top: 30px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #17341D 0%, #17341D 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: .3s;
}

.mais button:hover{
    cursor: pointer;
    transform:scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

/* Blog Grid */
.blog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e4e4e4 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
    cursor: pointer;
    border: 3px solid transparent;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(45, 122, 62, 0.25);
    border-color: #ffd700;
}

.blog-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.blog-img1 {
    background: linear-gradient(135deg, #2d7a3e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-img2 {
    background: linear-gradient(135deg, #654321, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-img3 {
    background: linear-gradient(135deg, #ffd700, #2d7a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-img4 {
    background: linear-gradient(135deg, #3a9952, #654321);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-img5 {
    background: linear-gradient(135deg, #1a5928, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-img6 {
    background: linear-gradient(135deg, #ffd700, #654321);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a5928;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card h3 {
    font-size: 1.6rem;
    color: #1a5928;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;       
}

.line3{
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;     
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limita a 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    background: linear-gradient(135deg, #2d7a3e 0%, #3a9952 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4);
}

/* Featured Post */
.featured-post {
    background: linear-gradient(135deg, #654321 0%, #8b5a2b 100%);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    background: linear-gradient(135deg, #2d7a3e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    min-height: 450px;
}

.featured-content {
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a5928;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #412c00 0%, #ffc400 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15), transparent),
                radial-gradient(circle at 70% 50%, rgba(139, 69, 19, 0.15), transparent);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    background: none;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, #2e2200 0%, #5e4000 100%);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {    

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 2.5rem;
    }

    .featured-content h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .filter-buttons {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}
