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

:root {
    --green-dark: #003d11;
    --green-light: #93c02f;
    --green-dark-hover: #005a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 61, 17, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 1001;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--green-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    overflow: hidden;
}


#three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 8rem;
    animation: fadeInUp 1s ease-out;
}

.hero-image-container {
    position: relative;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 61, 17, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.hero-text {
    animation: fadeInRight 1s ease-out 0.5s both;
    position: relative;
}

/* Triângulos decorativos como aspas */
.quote-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero.scrolled .quote-triangles {
    opacity: 1;
}

.quote-triangle-left,
.quote-triangle-right {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quote-triangle-left {
    top: -20px;
    left: -40px;
    transform: translateX(-100px) rotate(-45deg);
}

.hero.scrolled .quote-triangle-left {
    transform: translateX(0) rotate(-45deg);
}

.quote-triangle-right {
    bottom: -20px;
    right: -40px;
    transform: translateX(100px) rotate(135deg);
}

.hero.scrolled .quote-triangle-right {
    transform: translateX(0) rotate(135deg);
}

/* Criar triângulos usando CSS com bordas arredondadas simuladas */
.quote-triangle-left::before,
.quote-triangle-right::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--green-light);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 61, 17, 0.2));
}

.quote-triangle-left::before {
    top: 0;
    left: 0;
}

.quote-triangle-right::before {
    bottom: 0;
    right: 0;
    background: var(--green-dark);
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--green-dark);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(147, 192, 47, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.hero-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.hero-feature:hover {
    background: rgba(147, 192, 47, 0.2);
    transform: translateX(5px);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--green-dark);
    flex-shrink: 0;
}

.hero-feature span {
    color: var(--green-dark);
    font-weight: 500;
    font-size: 1rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--green-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 61, 17, 0.3);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta:hover {
    background: var(--green-dark-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 61, 17, 0.4);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--green-dark);
    border-bottom: 3px solid var(--green-dark);
    transform: rotate(45deg);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Triângulos decorativos na seção About */
.about-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.about-triangle {
    position: absolute;
    width: 20vw;
    height: 20vh;
    opacity: 0.2;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.about-triangle-top-left {
    top: 0;
    left: 0;
    transform: translateY(-200px) rotate(-30deg);
}

.about-triangle-bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(200px) rotate(150deg);
}

.about-triangle-top-left::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    /* Triângulo isósceles apontando para baixo à esquerda */
    /* Base na parte superior, vértice na parte inferior */
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-bottom: 20vh solid var(--green-light);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

.about-triangle-bottom-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    /* Triângulo isósceles apontando para cima à direita */
    /* Base na parte inferior, vértice na parte superior */
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-top: 20vh solid var(--green-dark);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

/* Animação quando a seção está visível */
.about.visible .about-triangle-top-left {
    opacity: 0.2;
    transform: translateY(0) rotate(-30deg);
}

.about.visible .about-triangle-bottom-right {
    opacity: 0.2;
    transform: translateY(0) rotate(150deg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 61, 17, 0.1);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--green-dark);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: var(--green-light);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--green-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--green-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 192, 47, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 61, 17, 0.2);
    border-top: 4px solid var(--green-light);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    color: var(--green-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-card:hover .service-icon {
    color: var(--green-light);
    transform: scale(1.15) rotate(360deg);
    background: rgba(147, 192, 47, 0.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.service-list li svg {
    width: 20px;
    height: 20px;
    color: var(--green-light);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.service-list li:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.service-list li:hover svg {
    color: var(--green-dark);
    transform: scale(1.2);
}

.service-list li span {
    color: #555;
    line-height: 1.6;
    flex: 1;
}

/* IR Declaration Section */
.ir-declaration {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Triângulos decorativos na seção IR */
.ir-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.ir-triangle {
    position: absolute;
    width: 20vw;
    height: 20vh;
    opacity: 0.2;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.ir-triangle-top-left {
    top: 0;
    left: 0;
    transform: translateY(-200px) rotate(-30deg);
}

.ir-triangle-bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(200px) rotate(150deg);
}

.ir-triangle-top-left::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-bottom: 20vh solid var(--green-light);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

.ir-triangle-bottom-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-top: 20vh solid var(--green-dark);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

/* Animação quando a seção está visível */
.ir-declaration.visible .ir-triangle-top-left {
    opacity: 0.2;
    transform: translateY(0) rotate(-30deg);
}

.ir-declaration.visible .ir-triangle-bottom-right {
    opacity: 0.2;
    transform: translateY(0) rotate(150deg);
}

.ir-content {
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.ir-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ir-feature-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ir-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 61, 17, 0.15);
    background: white;
}

.ir-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    transition: all 0.3s ease;
}

.ir-feature-box:hover .ir-feature-icon {
    background: var(--green-light);
    color: var(--green-dark);
    transform: scale(1.1) rotate(360deg);
}

.ir-feature-icon svg {
    width: 35px;
    height: 35px;
}

.ir-feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
}

.ir-feature-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.ir-action {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-dark-hover) 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 17, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ir-action::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 192, 47, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ir-action-content {
    position: relative;
    z-index: 2;
}

.ir-action-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.ir-action-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ir-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: var(--green-light);
    color: var(--green-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(147, 192, 47, 0.4);
}

.ir-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 192, 47, 0.6);
}

.ir-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.ir-button:hover svg {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Triângulos decorativos na seção Contact */
.contact-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-triangle {
    position: absolute;
    width: 20vw;
    height: 20vh;
    opacity: 0.2;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.contact-triangle-top-left {
    top: 0;
    left: 0;
    transform: translateY(-200px) rotate(-30deg);
}

.contact-triangle-bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(200px) rotate(150deg);
}

.contact-triangle-top-left::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    /* Triângulo isósceles apontando para baixo à esquerda */
    /* Base na parte superior, vértice na parte inferior */
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-bottom: 20vh solid var(--green-light);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

.contact-triangle-bottom-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    /* Triângulo isósceles apontando para cima à direita */
    /* Base na parte inferior, vértice na parte superior */
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-top: 20vh solid var(--green-dark);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

/* Animação quando a seção está visível */
.contact.visible .contact-triangle-top-left {
    opacity: 0.2;
    transform: translateY(0) rotate(-30deg);
}

.contact.visible .contact-triangle-bottom-right {
    opacity: 0.2;
    transform: translateY(0) rotate(150deg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

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

.contact-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.map-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.map-container h4 {
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.map-iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.fachada-container {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fachada-container:hover {
    transform: scale(1.02);
}

.fachada-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--green-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--green-light);
    color: var(--green-dark);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0.25rem 0;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
    font-weight: 500;
}

.form-group label svg {
    width: 18px;
    height: 18px;
    color: var(--green-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green-dark);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: var(--green-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 17, 0.3);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mensagem de sucesso */
.success-message {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 17, 0.2);
    text-align: center;
    animation: slideInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 192, 47, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.success-content {
    position: relative;
    z-index: 2;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    animation: scaleIn 0.6s ease-out 0.2s both, pulse 2s ease-in-out 1s infinite;
    box-shadow: 0 5px 20px rgba(147, 192, 47, 0.4);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(147, 192, 47, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(147, 192, 47, 0.6);
    }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    animation: checkmark 0.6s ease-out 0.4s both;
}

@keyframes checkmark {
    from {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
    }
    to {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
    }
}

.success-message h3 {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.success-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

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

/* Ocultar formulário */
.contact-form.hidden {
    display: none;
}

/* reCAPTCHA v3 funciona em background, sem necessidade de estilos visuais */

/* Careers Section */
.careers {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Triângulos decorativos na seção Careers */
.careers-triangles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.careers-triangle {
    position: absolute;
    width: 20vw;
    height: 20vh;
    opacity: 0.2;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.careers-triangle-top-left {
    top: 0;
    left: 0;
    transform: translateY(-200px) rotate(-30deg);
}

.careers-triangle-bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(200px) rotate(150deg);
}

.careers-triangle-top-left::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-bottom: 20vh solid var(--green-light);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

.careers-triangle-bottom-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10vw solid transparent;
    border-right: 10vw solid transparent;
    border-top: 20vh solid var(--green-dark);
    filter: drop-shadow(0 4px 12px rgba(0, 61, 17, 0.15));
}

/* Animação quando a seção está visível */
.careers.visible .careers-triangle-top-left {
    opacity: 0.2;
    transform: translateY(0) rotate(-30deg);
}

.careers.visible .careers-triangle-bottom-right {
    opacity: 0.2;
    transform: translateY(0) rotate(150deg);
}

.careers-content {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.careers-text {
    margin-bottom: 3rem;
}

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

.careers-action {
    display: flex;
    justify-content: center;
}

.careers-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: var(--green-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 61, 17, 0.3);
}

.careers-button:hover {
    background: var(--green-dark-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 61, 17, 0.4);
}

.careers-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.careers-button:hover svg {
    transform: translateX(5px);
}

/* Portal Section */
.portal {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Animação de entrada do portal */
.portal-animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    visibility: visible;
}

.portal-animation-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.portal-animation-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.growth-chart-container {
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.growth-chart {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.chart-axis {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.3s forwards;
}

.growth-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease-out 0.8s forwards;
    opacity: 1;
}

.chart-point {
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.4s ease-out forwards;
}

.chart-point:nth-of-type(3) {
    animation-delay: 1.2s;
}

.chart-point:nth-of-type(4) {
    animation-delay: 1.6s;
}

.chart-point:nth-of-type(5) {
    animation-delay: 2s;
}

.chart-point:nth-of-type(6) {
    animation-delay: 2.4s;
}

.growth-arrow {
    opacity: 0;
    transform: translateY(-20px);
    animation: arrowRise 0.6s ease-out 2.8s forwards;
}

.motivational-text {
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.motivational-title {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.motivational-message {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes arrowRise {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.portal-content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.portal.animation-complete .portal-content {
    opacity: 1;
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portal-feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.portal-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 61, 17, 0.15);
}

.portal-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(147, 192, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    transition: all 0.3s ease;
}

.portal-feature:hover .portal-feature-icon {
    background: var(--green-light);
    color: white;
    transform: scale(1.1);
}

.portal-feature-icon svg {
    width: 30px;
    height: 30px;
}

.portal-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--green-dark);
}

.portal-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.portal-action {
    text-align: center;
    padding-top: 2rem;
}

.portal-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--green-dark);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 61, 17, 0.2);
}

.portal-button:hover {
    background: var(--green-dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 17, 0.3);
}

.portal-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--green-dark);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer p {
    opacity: 0.9;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-list li.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 61, 17, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    /* Overlay quando menu está aberto */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
    }

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

    .portal-features {
        grid-template-columns: 1fr;
    }

    .about-triangle {
        width: 25vw;
        height: 25vh;
    }

    .about-triangle-top-left {
        top: 0;
        left: 0;
    }

    .about-triangle-bottom-right {
        bottom: 0;
        right: 0;
    }

    .about-triangle-top-left::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-bottom: 25vh solid var(--green-light);
    }

    .about-triangle-bottom-right::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-top: 25vh solid var(--green-dark);
    }

    .contact-triangle {
        width: 25vw;
        height: 25vh;
    }

    .contact-triangle-top-left {
        top: 0;
        left: 0;
    }

    .contact-triangle-bottom-right {
        bottom: 0;
        right: 0;
    }

    .contact-triangle-top-left::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-bottom: 25vh solid var(--green-light);
    }

    .contact-triangle-bottom-right::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-top: 25vh solid var(--green-dark);
    }

    .careers-triangle {
        width: 25vw;
        height: 25vh;
    }

    .careers-triangle-top-left {
        top: 0;
        left: 0;
    }

    .careers-triangle-bottom-right {
        bottom: 0;
        right: 0;
    }

    .careers-triangle-top-left::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-bottom: 25vh solid var(--green-light);
    }

    .careers-triangle-bottom-right::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-top: 25vh solid var(--green-dark);
    }

    .careers-content {
        padding: 0 1rem;
    }

    .careers-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .success-message {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .success-icon svg {
        width: 40px;
        height: 40px;
    }

    .success-message h3 {
        font-size: 1.5rem;
    }

    .success-message p {
        font-size: 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .social-link {
        padding: 0.4rem 0.8rem;
    }

    .social-link span {
        font-size: 0.85rem;
    }

    .ir-info {
        grid-template-columns: 1fr;
    }

    .ir-action {
        padding: 2rem 1.5rem;
    }

    .ir-action-content h3 {
        font-size: 1.5rem;
    }

    .ir-action-content p {
        font-size: 1rem;
    }

    .ir-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .ir-triangle {
        width: 25vw;
        height: 25vh;
    }

    .ir-triangle-top-left {
        top: 0;
        left: 0;
    }

    .ir-triangle-bottom-right {
        bottom: 0;
        right: 0;
    }

    .ir-triangle-top-left::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-bottom: 25vh solid var(--green-light);
    }

    .ir-triangle-bottom-right::before {
        border-left: 12.5vw solid transparent;
        border-right: 12.5vw solid transparent;
        border-top: 25vh solid var(--green-dark);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Transitions */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp FAB Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: visible;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-fab:active {
    transform: scale(0.95);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover svg {
    transform: rotate(5deg);
}

.fab-tooltip {
    position: absolute;
    right: 75px;
    background: var(--green-dark);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--green-dark);
}

.whatsapp-fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive WhatsApp FAB */
@media (max-width: 768px) {
    .whatsapp-fab {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-fab svg {
        width: 28px;
        height: 28px;
    }
    
    .fab-tooltip {
        right: 65px;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .whatsapp-fab:hover .fab-tooltip {
        opacity: 0;
        visibility: hidden;
    }
}

