/* CSS Variables for colors */
:root {
    --primary-color: #00c07f;
    --primary-color-dark: #00a86f;
    --text-light: #fff;
    --text-dark: #000;
    --gradient-primary: linear-gradient(to right, #76F1A0, #478B78);
    --gradient-primary-reverse: linear-gradient(to right, #478B78, #76F1A0);
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-dark: 0 6px 12px rgba(0, 0, 0, 0.25);
    --background-dark: #020C08;
    --background-testimonials: #171717;
    --background-innovation: #1B2420;
    --background-quality: #0F3A2C;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header styles */
.main-header {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Logo styles */
.logo a {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation styles */
.main-nav > ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a, .main-nav button {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.main-nav a:hover, .main-nav button:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-dark);
    min-width: 180px;
    box-shadow: var(--shadow-dark);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu ul {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Contact button */
.btn-contact {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-light);
}

.btn-contact:hover {
    background: var(--gradient-primary-reverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 2px 0;
    transition: 0.3s;
}

/* Animação do botão do menu mobile quando ativo */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

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

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

/* Hero section */
.hero {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 0 0 80px 0;
    overflow: hidden;
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    height: 100%;
    position: relative;
    min-height: calc(100vh - 70px);
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-gallery {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
    padding: 15px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.5s ease;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Adjust grid positions to match the image layout */
.item-1 {
    grid-column: 2;
    grid-row: 1;
}

.item-2 {
    grid-column: 1;
    grid-row: 1;
}

.item-3 {
    grid-column: 1;
    grid-row: 2;
}

.item-4 {
    grid-column: 1;
    grid-row: 3;
}

.item-5 {
    grid-column: 2;
    grid-row: 3;
}

.item-6 {
    grid-column: 2;
    grid-row: 2;
}

/* Responsive styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--background-dark);
        z-index: 1000;
        padding-top: 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
        display: block;
    }
    
    .main-nav > ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .main-nav li {
        margin: 15px 0;
        width: 100%;
    }
    
    .main-nav a, .main-nav button {
        display: block;
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }
    
    .btn-contact {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin-top: 10px;
        display: none;
        background-color: transparent;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Overlay para quando o menu estiver aberto */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Ajustes para o dropdown no menu mobile */
    .dropdown i {
        position: absolute;
        right: 0;
        top: 15px;
        transition: transform 0.3s;
    }
    
    .dropdown.active i {
        transform: rotate(180deg);
    }
    
    .contact-button {
        margin-right: 20px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 40px 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-gallery {
        position: relative;
        width: 100%;
        height: 600px;
        margin-top: 40px;
    }

    .gallery-item {
        max-width: 90%;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 14px;
    }
     
    .logo-image {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-gallery {
        height: 500px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .contact-button {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0;
    }
    
    .hero-gallery {
        height: 650px;
        display: grid;
        gap: 10px;
        margin-top: 0;
    }
    
    .gallery-item {
        height: 200px;
        left: 10px
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Innovation Section */
.innovation {
    background-color: var(--background-innovation);
    color: var(--text-light);
    padding: 80px 0;
    overflow: hidden;
}

.innovation-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.innovation-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.innovation-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.innovation-image:hover img {
    transform: scale(1.03);
}

.innovation-content {
    flex: 1;
    max-width: 550px;
}

.section-label {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.section-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-contact-arrow {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-contact-arrow i {
    transition: transform 0.3s;
}

.btn-contact-arrow:hover i {
    transform: translateX(5px);
}

/* Responsive styles for innovation section */
@media (max-width: 992px) {
    .innovation-container {
        flex-direction: column;
    }
    
    .innovation-content {
        max-width: 100%;
        text-align: center;
    }
    
    .section-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-buttons {
        flex-direction: column;
    }
    
    .btn-outline, .btn-contact-arrow {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Quality Section */
.quality {
    background-color: var(--background-quality);
    color: var(--text-light);
    padding: 80px 0;
    overflow: hidden;
}

.quality-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.quality-content {
    flex: 1;
    max-width: 550px;
}

.quality-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.quality-image:hover img {
    transform: scale(1.03);
}

.features {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.feature {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive styles for quality section */
@media (max-width: 992px) {
    .quality-container {
        flex-direction: column-reverse;
    }
    
    .quality-content {
        max-width: 100%;
        text-align: center;
    }
    
    .features {
        justify-content: center;
    }
    
    .section-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .feature-title {
        font-size: 1.3rem;
    }
}

.section-title {
    font-size: 2rem;
}

.btn-outline, .btn-contact-arrow {
    justify-content: center;
    text-align: center;
}

/* Animations */
@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);
    }
}

/* Solutions Section */
.solutions {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
    overflow: hidden;
}

.solutions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.03);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.solutions-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive styles for solutions section */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .solutions-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-testimonials);
    color: var(--text-light);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.client-logo {
    margin-bottom: 40px;
}

.client-logo img {
    height: 30px;
    width: auto;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 80%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-position {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10;
}

.testimonial-nav:hover {
    opacity: 1;
}

.prev-testimonial {
    left: -50px;
}

.next-testimonial {
    right: -50px;
}

.prev-testimonial:hover {
    transform: translateY(-50%) translateX(-5px);
}

.next-testimonial:hover {
    transform: translateY(-50%) translateX(5px);
}

/* Responsive styles for testimonials section */
@media (max-width: 992px) {
    .testimonial-quote {
        font-size: 1.5rem;
        max-width: 90%;
    }
    
    .testimonial-nav {
        font-size: 1.2rem;
    }
    
    .prev-testimonial {
        left: 10px;
    }
    
    .next-testimonial {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .testimonial-quote {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-position {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    color: var(--text-light);
    background-color: var(--background-dark);
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/contact/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 600px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-text {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Form Styles */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.contact-input, .contact-textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-family: 'Cabin', sans-serif;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: background-color 0.3s;
}

.contact-input::placeholder, .contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-input:focus, .contact-textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-content {
        text-align: center;
        max-width: 100%;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: var(--background-dark);
    margin: 10% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.contact-modal-close, .specialist-modal-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s;
}

.contact-modal-close:hover, .specialist-modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 25px;
    color: var(--text-light);
}

/* Responsive styles for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .modal-content {
        margin: 20% auto;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #0F2A20;
    color: var(--text-light);
    padding: 60px 8px 0 8px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.footer-newsletter {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact-info i {
    width: 16px;
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-family: 'Cabin', sans-serif;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: var(--gradient-primary);
    color: var(--text-dark);
}

.privacy-notice {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-link i {
    width: 16px;
}

.footer-copyright {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-newsletter {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .footer-links {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 20px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        border-radius: 6px;
    }
    
    .newsletter-button {
        width: 100%;
        padding: 12px;
        border-radius: 6px;
    }
}

/* Products Page Styles */
.products-hero {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 120px 0 80px 0;
    text-align: center;
}

.products-hero .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.products-hero .section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-detail {
    padding: 80px 0;
    overflow: hidden;
}

.product-detail:nth-child(even) {
    background-color: var(--background-innovation);
}

.product-detail:nth-child(odd) {
    background-color: var(--background-quality);
}

.product-detail:nth-child(4) {
    background-color: var(--background-dark);
}

.product-detail-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-detail:nth-child(even) .product-detail-container {
    flex-direction: row-reverse;
}

.product-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-detail-image:hover img {
    transform: scale(1.03);
}

.product-detail-content {
    flex: 1;
    color: var(--text-light);
}

.product-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.back-to-home {
    background-color: var(--background-innovation);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.back-to-home .section-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.back-to-home .btn {
    margin: 0;
}

/* Products Page Responsive Styles */
@media (max-width: 992px) {
    .product-detail-container {
        flex-direction: column !important;
        text-align: center;
    }
    
    .product-detail-title {
        font-size: 1.8rem;
    }
    
    .products-hero .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .products-hero {
        padding: 100px 0 60px 0;
    }
    
    .products-hero .section-title {
        font-size: 1.8rem;
    }
    
    .product-detail {
        padding: 60px 0;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
}

/* Estilos específicos para a página de qualidade */
.quality-hero {
    background: var(--background-dark);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.quality-hero .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quality-hero .section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

.certification-section {
    padding: 80px 0;
    background-color: var(--background-innovation);
    color: var(--text-light);
    overflow: hidden;
}

.certification-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.certification-image, .values-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.certification-image img, .values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.certification-image:hover img, .values-image:hover img {
    transform: scale(1.03);
}

.certification-content, .values-content {
    flex: 1;
    color: var(--text-light);
}

.certification-features {
    margin-top: 30px;
}

.certification-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.certification-feature i, .value-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--background-quality);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--text-white);
}

.quality-values {
    padding: 80px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.values-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    margin-bottom: 30px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.7;
    margin-right: 20px;
    line-height: 1;
}

.quality-cta {
    padding: 80px 0;
    background: var(--background-innovation);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.quality-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.quality-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-white);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .certification-container,
    .values-container {
        flex-direction: column;
    }
    
    .certification-content, .values-content {
        order: 1;
        text-align: center;
    }
    
    .certification-image,
    .values-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .certification-feature {
        text-align: left;
    }
    
    .value-item {
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .quality-hero .section-title {
        font-size: 2.2rem;
    }
    
    .quality-hero .section-text {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-cta h2 {
        font-size: 1.8rem;
    }
}

/* Estilos para a página de Trajetória */

/* Hero Section */
.innovation-hero {
    background: var(--background-dark);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.innovation-hero .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.innovation-hero .section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    position: absolute;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
    top: 15px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
    top: 15px;
}

.timeline-content {
    padding: 20px 20px;
    background-color: var(--background-quality);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #fff;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.timeline-description {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

/* Values Section */
.innovation-values {
    padding: 80px 0;
    background-color: var(--background-innovation);
    color: #fff;
}

.innovation-values .section-title,
.innovation-values .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.innovation-values .section-text {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--background-quality);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.value-description {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

/* Future Section */
.innovation-future {
    padding: 80px 0;
    background-color: var(--background-quality);
    color: #fff;
}

.innovation-future .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.future-content {
    flex: 1;
}

.future-image {
    flex: 1;
    text-align: center;
}

.future-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.innovation-future .section-buttons {
    margin-top: 30px;
}

/* Responsive Styles for Timeline Page */
@media (max-width: 992px) {
    .innovation-hero .section-title {
        font-size: 2.4rem;
    }
    
    .innovation-future .container {
        flex-direction: column;
    }
    
    .future-content {
        order: 1;
    }
    
    .future-image {
        order: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 28px;
        right: auto;
    }
    
    .innovation-hero .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .innovation-hero {
        padding: 100px 0 60px;
    }
    
    .innovation-hero .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
}

/* Estilos específicos para a página de equipe */
.team-section {
    padding: 100px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-member {
    background: linear-gradient(145deg, #0a1a14, #0d2218);
    border-radius: 15px;
    overflow: hidden;
    width: 350px;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-details {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px 25px;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.member-position {
    font-size: 1rem;
    color: var(--text-light);
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.team-hero {
    background-color: var(--background-dark);
    padding: 100px 0 50px;
    text-align: center;
    color: var(--text-light);
}

.team-hero .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-hero .section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-container {
        gap: 30px;
    }
    
    .team-member {
        width: 100%;
        max-width: 320px;
    }
}