@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #008f47;
    --accent-color-hover: #007c3f;
    --text-color: #222;
    --white: #fff;
    --gray: #f1f1f1;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Titillium Web', sans-serif;
}

h1 {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -2px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

section {
    padding: 60px 0;
}

section:nth-of-type(even) {
    background-color: var(--white);
}

section:nth-of-type(odd) {
    background-color: var(--gray);
}

.bt a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.bt a:hover {
    background-color: var(--accent-color-hover);
}

.logo {
    width: 110px;
    height: auto;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-principal-rr-grama-sintetica.jpeg') no-repeat center center/cover;
    padding: 100px 0px;
}

.galeria .box-galeria {
    display: grid;
    place-items: center;
    width: 100%;
}

.galeria .box-galeria img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 1/1;
}

#praQuem .content span {
    color: var(--text-color);
    font-weight: 200;
    text-transform: uppercase;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--white);
}

.img-produtos {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

.produtos .card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.produtos .card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.produtos .card:hover {
    transform: translateY(-10px);
}

.vantagens .box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    background-color: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 14px;
    height: 300px;
}

.vantagens .box svg {
    width: 64px;
    height: 64px;
    color: var(--accent-color);
}

.contact .content h2 {
    font-size: 42px;
}

.contact .content .bt a {
    text-decoration: underline;
    color: var(--accent-color);
    background-color: transparent;
}

.contact_form {
    background-color: var(--gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.footer {
    background-color: var(--white);
    color: var(--text-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
    color: var(--text-color);
}

.footer-contact i {
    color: var(--text-color);
    opacity: 0.8;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.9;
}

.gsap-element {
    will-change: transform, opacity;
}

.loading-animation {
    opacity: 0;
    transform: translateY(50px);
}

.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.enhanced-hover:hover {
    will-change: transform;
}

.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 143, 71, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 143, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 143, 71, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.text-reveal {
    overflow: hidden;
}

.text-reveal .line {
    display: block;
    transform: translateY(100%);
}

.parallax-container {
    overflow: hidden;
}

.form-control:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#lgpd-banner.hidden {
    display: none;
}

.lgpd-content {
    flex: 1;
    min-width: 300px;
}

.lgpd-content p {
    margin: 0;
    color: #ffffff;
}

.lgpd-links {
    color: #ffffff;
    text-decoration: underline;
}

.lgpd-links:hover {
    color: #cccccc;
}

.lgpd-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.lgpd-button:hover {
    background-color: #45a049;
}

/* Responsividade */
@media (max-width: 768px) {
    #lgpd-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .lgpd-content {
        min-width: auto;
        margin-bottom: 10px;
    }

    .lgpd-button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    #lgpd-banner {
        font-size: 13px;
    }

    .lgpd-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 10px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-section .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 120px;
    }

    .galeria .col {
        flex: 0 0 100%;
        margin-bottom: 32px;
    }

    .galeria .box-galeria img {
        width: 85%;
        height: 100%;
    }

    .produtos .col {
        flex: 0 0 100%;
        margin-bottom: 32px;
    }

    .vantagens .col {
        flex: 0 0 100%;
        margin-bottom: 32px;
    }

    .footer {
        text-align: center;
    }
    
    .footer-logo {
        max-height: 50px;
    }
}