/* Reset e estilos globais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --azul-petroleo: #002937;
            --verde-tecnologico: #04C8B6;
            --verde-escuro: #03624C;
            --cinza-grafite: #2D2D2D;
            --off-white: #F2F3ED;
            --sombra: rgba(0, 0, 0, 0.3);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            padding-top: 80px;
            font-family: 'Amiko', sans-serif;
            background-color: var(--azul-petroleo);
            color: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(4, 200, 182, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(4, 200, 182, 0.05) 0%, transparent 20%),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2304c8b6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        h1, h2, h3 {
            font-weight: normal;
        }
        
        h1, h2 {
            font-family: 'Bungee', cursive;
            text-transform: uppercase;
        }
        
        h3 {
            font-family: 'Maiden Orange', cursive;
            font-size: 2rem;
        }
        
        p, li, a, input, textarea, button {
            font-family: 'Share Tech', sans-serif;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==============================
   BARRA DE NAVEGAÇÃO - ATUALIZADA
   ============================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 41, 55, 0.98);
    border-bottom: 3px solid var(--verde-tecnologico);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo com imagem simples */
.nav-logo .logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo-simple:hover {
    transform: scale(1.05);
}

/* Imagem da logo */
.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* Texto da logo */
.logo-text {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    color: var(--verde-tecnologico);
    text-shadow: 2px 2px 0 var(--verde-escuro);
    letter-spacing: 1px;
}

.logo-secondary {
    color: var(--off-white);
    font-size: 2.2rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Share Tech', sans-serif;
    font-size: 1.1rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--verde-tecnologico);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde-tecnologico);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Botão CTA na navbar */
.cta-nav .nav-btn {
    padding: 12px 25px;
    font-size: 1rem;
    margin-left: 10px;
    white-space: nowrap;
}

/* Botão do menu mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 38px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    z-index: 1005;
    background: transparent;
    border: none;
    border-radius: 6px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
}

.nav-toggle:hover, .nav-toggle:active {
    background-color: rgba(4, 200, 182, 0.15);
}

.toggle-line {
    height: 3px;
    width: 100%;
    background-color: var(--verde-tecnologico);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menu Mobile */
.nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: var(--azul-petroleo);
    border-left: 3px solid var(--verde-tecnologico);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10003;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 20px 40px;
    visibility: hidden;
    pointer-events: none;
}

.nav-mobile.active {
    right: 0;
    visibility: visible;
    pointer-events: auto;
}

/* Logo no menu mobile */
.mobile-logo-container {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(4, 200, 182, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.mobile-logo-container .logo-simple {
    justify-content: center;
    gap: 15px;
}

.nav-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile-item {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(4, 200, 182, 0.15);
    padding-bottom: 12px;
}

.nav-mobile-item:last-child {
    border-bottom: none;
}

.nav-mobile-link {
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Share Tech', sans-serif;
    font-size: 1.15rem;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.nav-mobile-link:hover, .nav-mobile-link:active {
    color: var(--azul-petroleo);
    background-color: var(--verde-tecnologico);
    padding-left: 16px;
}

.cta-mobile {
    margin-top: 25px;
    text-align: center;
}

.cta-mobile .nav-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1.05rem;
}

/* Overlay para fechar menu mobile */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Navbar scroll effect */
.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 41, 55, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

/* ==============================
   RESPONSIVIDADE
   ============================== */

/* Desktop médio */
@media (max-width: 1100px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .cta-nav .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-secondary {
        font-size: 2rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-secondary {
        font-size: 1.8rem;
    }
    
    .mobile-logo-container .logo-simple {
        gap: 15px;
    }
}

/* Tablet pequeno */
@media (max-width: 768px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-secondary {
        font-size: 1.6rem;
    }
    
    .logo-simple {
        gap: 12px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-mobile {
        width: 280px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-secondary {
        font-size: 1.4rem;
    }
    
    .logo-simple {
        gap: 10px;
    }
    
    .nav-mobile {
        width: 100%;
    }
    
    .mobile-logo-container .logo-simple {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-logo-container .logo-text {
        text-align: center;
    }
    
    .nav-container {
        padding: 0 10px;
    }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-secondary {
        font-size: 1.2rem;
    }
    
    .logo-simple {
        gap: 8px;
    }
}
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            display: inline-block;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h2::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 20px;
            background-color: var(--verde-tecnologico);
            bottom: 5px;
            left: 0;
            z-index: -1;
            opacity: 0.7;
        }
        
        .section-title h3 {
            color: var(--verde-tecnologico);
            margin-top: 15px;
            font-size: 1.8rem;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: 'Share Tech', sans-serif;
        }
        
        .btn-primary {
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            box-shadow: 0 0 15px rgba(4, 200, 182, 0.5);
        }
        
        .btn-primary:hover {
            background-color: var(--off-white);
            box-shadow: 0 0 25px rgba(4, 200, 182, 0.8);
            transform: translateY(-5px);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--verde-tecnologico);
            border: 3px solid var(--verde-tecnologico);
            box-shadow: 0 0 10px rgba(4, 200, 182, 0.3);
        }
        
        .btn-secondary:hover {
            background-color: rgba(4, 200, 182, 0.1);
            box-shadow: 0 0 20px rgba(4, 200, 182, 0.6);
            transform: translateY(-5px);
        }
        
        /* Efeitos de luz verde tecnológica */
        .tech-glow {
            position: relative;
        }
        
        .tech-glow::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: radial-gradient(circle, rgba(4, 200, 182, 0.2) 0%, transparent 70%);
            z-index: -1;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tech-glow:hover::after {
            opacity: 1;
        }
        
        /* Seção 1: HOME - Hero Section */
.hero {
    min-height: calc(100vh - 80px); /* Subtrai a altura da navbar */
    padding-top: 0; /* Remove o padding-top anterior */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 41, 55, 0.9), rgba(0, 41, 55, 0.9)),
        url('img/gado.jpg') center/cover no-repeat;
    z-index: -1;
}

/* Container principal com grid para texto e logo */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

/* Lado esquerdo - Texto e botões */
.hero-text {
    display: flex;
    flex-direction: column;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--off-white);
    text-shadow: 3px 3px 0 var(--verde-escuro);
}

.hero h1 span {
    color: var(--verde-tecnologico);
}

.hero-subtitle {
    font-family: 'Maiden Orange', cursive;
    font-size: 2.5rem;
    color: var(--verde-tecnologico);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}



/* Lado direito - Container da Logo */
.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

#logohb{
    width: 1500px;
}

.logo-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
}

/* Espaço para a logo - substitua isso pela sua imagem */
.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Elementos tecnológicos de fundo */
.hero-tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/*.circuit-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--verde-tecnologico);
    opacity: 0.3;
    top: 30%;
    box-shadow: 0 0 10px var(--verde-tecnologico);
}*/

.water-drop {
    position: absolute;
    width: 30px;
    height: 40px;
    background-color: var(--verde-tecnologico);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.4;
    animation: float 5s infinite ease-in-out;
}

.water-drop:nth-child(2) {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.water-drop:nth-child(3) {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .logo-wrapper {
        height: 350px;
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-logo-container {
        order: 2;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .logo-wrapper {
        margin: 0 auto;
        height: 300px;
        max-width: 400px;
    }
    
    .logo-placeholder-text {
        font-size: 2.8rem;
    }
    
    .logo-placeholder-text span {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .logo-wrapper {
        height: 250px;
        max-width: 350px;
    }
    
    .logo-placeholder-text {
        font-size: 2.2rem;
    }
    
    .logo-placeholder-text span {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .logo-wrapper {
        height: 200px;
        max-width: 300px;
    }
    
    .logo-placeholder-text {
        font-size: 1.8rem;
    }
    
    .logo-placeholder-text span {
        font-size: 2.5rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
        
        /* Seção 2: Sobre a HidroBovino */
        .about {
            background-color: var(--off-white);
            color: var(--azul-petroleo);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: url("data:image/svg+xml,%3Csvg width='100' height='30' viewBox='0 0 100 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 V20 Q25 10, 50 20 T100 20 V30z' fill='%23002937'/%3E%3C/svg%3E") repeat-x;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h2 {
            color: var(--azul-petroleo);
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .about-text h2 span {
            color: var(--verde-tecnologico);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            line-height: 1.8;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 10px 10px 0 var(--verde-escuro);
            border: 5px solid var(--azul-petroleo);
        }
        
        .innovation-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            padding: 15px 25px;
            border-radius: 8px;
            font-family: 'Bungee', cursive;
            font-size: 1.5rem;
            transform: rotate(5deg);
            box-shadow: 5px 5px 0 var(--azul-petroleo);
        }
        
        /* Seção 3: Sobre o Dispositivo */
        .device {
            background-color: var(--cinza-grafite);
            position: relative;
        }
        
        .device-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .step {
            background-color: rgba(242, 243, 237, 0.05);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid var(--verde-tecnologico);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(4, 200, 182, 0.2);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bungee', cursive;
            font-size: 1.5rem;
        }
        
        .step h3 {
            color: var(--verde-tecnologico);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .step p {
            color: var(--off-white);
            font-size: 1.1rem;
        }
        
        .device-data {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .data-card {
            background-color: var(--azul-petroleo);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border-left: 5px solid var(--verde-tecnologico);
        }
        
        .data-card i {
            font-size: 3rem;
            color: var(--verde-tecnologico);
            margin-bottom: 15px;
        }
        
        .data-card h4 {
            font-family: 'Maiden Orange', cursive;
            font-size: 2rem;
            color: var(--off-white);
            margin-bottom: 10px;
        }
        
        .data-card p {
            color: var(--off-white);
            font-size: 1.1rem;
        }
        
        /* Seção 4: Premiação */
        .awards {
            background: 
                radial-gradient(circle at 20% 50%, rgba(4, 200, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(4, 200, 182, 0.1) 0%, transparent 50%),
                var(--azul-petroleo);
            position: relative;
            overflow: hidden;
        }
        
        .award-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .award-text h2 {
            font-size: 3rem;
            color: var(--off-white);
            margin-bottom: 20px;
        }
        
        .award-text h2 span {
            color: var(--verde-tecnologico);
        }
        
        .award-text p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .award-image {
            /**background-image: url(img/beatrizcartão.jpg);*/
            position: relative;
            text-align: center;
        }
        
        .trophy {
            font-size: 10rem;
            color: var(--verde-tecnologico);
            filter: drop-shadow(0 0 10px rgba(4, 200, 182, 0.5));
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .award-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            padding: 15px 25px;
            border-radius: 8px;
            font-family: 'Bungee', cursive;
            font-size: 1.2rem;
            transform: rotate(-5deg);
        }
        
        /* Seção 5: Benefícios */
        .benefits {
            background-color: var(--off-white);
            color: var(--azul-petroleo);
        }
        
        .benefits-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .benefit-card {
            background-color: var(--azul-petroleo);
            color: var(--off-white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 10px 10px 0 var(--verde-escuro);
            transition: all 0.3s ease;
            border: 3px solid var(--verde-tecnologico);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 15px 15px 0 var(--verde-escuro);
        }
        
        .benefit-card i {
            font-size: 3.5rem;
            color: var(--verde-tecnologico);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--verde-tecnologico);
        }
        
        .benefit-card p {
            font-size: 1.1rem;
        }
        
        /* Seção 6: Depoimentos */
        .testimonials {
            background-color: var(--cinza-grafite);
        }
        
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 40px;
            background-color: rgba(242, 243, 237, 0.05);
            border-radius: 15px;
            border: 2px solid var(--verde-tecnologico);
        }
        
        .testimonial-content {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--off-white);
            text-align: center;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--verde-tecnologico);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--azul-petroleo);
            font-weight: bold;
        }
        
        .author-info h4 {
            font-family: 'Maiden Orange', cursive;
            font-size: 1.5rem;
            color: var(--verde-tecnologico);
        }
        
        .author-info p {
            color: var(--off-white);
            font-size: 1rem;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .slider-btn {
            background-color: transparent;
            color: var(--verde-tecnologico);
            border: 2px solid var(--verde-tecnologico);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
        }
        
        /* Seção 7: CTA Final */
        .final-cta {
            background-color: var(--azul-petroleo);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(4, 200, 182, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(4, 200, 182, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .final-cta-content {
            position: relative;
            z-index: 2;
        }
        
        .final-cta h2 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            color: var(--off-white);
        }
        
        .final-cta h2 span {
            color: var(--verde-tecnologico);
        }
        
        .final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        /* Seção 8: Formulário */
        .contact {
            background-color: var(--off-white);
            color: var(--azul-petroleo);
        }
        
        .contact-form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--azul-petroleo);
            color: var(--off-white);
            padding: 50px;
            border-radius: 15px;
            border: 5px solid var(--verde-tecnologico);
            box-shadow: 15px 15px 0 var(--verde-escuro);
        }
        
        .contact-form-container h2 {
            color: var(--verde-tecnologico);
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
        }

        /* Atalhos de contato direto */
        .direct-contact-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .direct-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(4, 200, 182, 0.1);
            color: var(--verde-tecnologico);
            border: 2px solid var(--verde-tecnologico);
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-family: 'Share Tech', sans-serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .direct-badge:hover {
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(4, 200, 182, 0.4);
        }

        .direct-badge i {
            font-size: 1.3rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 1.1rem;
            color: var(--verde-tecnologico);
            font-family: 'Share Tech', sans-serif;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 3px solid var(--verde-tecnologico);
            background-color: rgba(242, 243, 237, 0.1);
            border-radius: 8px;
            color: var(--off-white);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(4, 200, 182, 0.5);
            background-color: rgba(242, 243, 237, 0.05);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 40px;
        }

        /* Estilos para mensagens do formulário */
        .form-message {
            transition: all 0.3s ease;
            font-family: 'Share Tech', sans-serif;
            font-size: 1.15rem;
            line-height: 1.5;
        }

        .form-message.success {
            display: block !important;
            background-color: rgba(4, 200, 182, 0.2);
            border: 2px solid var(--verde-tecnologico);
            color: var(--off-white);
        }

        .form-message.error {
            display: block !important;
            background-color: rgba(255, 75, 75, 0.2);
            border: 2px solid #ff4b4b;
            color: var(--off-white);
        }

        /* Estilos do botão durante envio */
        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .fa-spinner {
            margin-right: 10px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .btn:disabled:hover {
            transform: none !important;
            box-shadow: none !important;
        }
        
        /* Sections Bônus */
        .bonus-section {
            padding: 80px 0;
        }
        
        /* Bônus 1: Antes e Depois */
        .before-after {
            background-color: var(--cinza-grafite);
        }
        
        .comparison-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border: 5px solid var(--verde-tecnologico);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(4, 200, 182, 0.3);
            user-select: none;
            -webkit-user-select: none;
        }
        
        .comparison-slider {
            position: relative;
            width: 100%;
            height: 500px;
            touch-action: none;
            cursor: ew-resize;
            overflow: hidden;
        }
        
        .comparison-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .comparison-layer {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.2rem;
            font-family: 'Bungee', cursive;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
        }

        .before-layer {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/água-suja-no-rio-89474700.webp');
        }

        .after-layer {
            background: linear-gradient(rgba(4, 200, 182, 0.3), rgba(4, 200, 182, 0.3)), url('img/águalimpa.webp');
        }

        .image-after {
            z-index: 1;
        }
        
        .image-before {
            z-index: 2;
            width: 100%;
            clip-path: inset(0 50% 0 0);
            -webkit-clip-path: inset(0 50% 0 0);
            transition: none;
        }
        
        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background-color: var(--verde-tecnologico);
            cursor: ew-resize;
            z-index: 5;
            transform: translateX(-50%);
            touch-action: none;
            box-shadow: 0 0 10px rgba(4, 200, 182, 0.8);
        }
        
        .slider-handle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background-color: var(--verde-tecnologico);
            border: 4px solid var(--azul-petroleo);
            box-shadow: 0 0 15px rgba(4, 200, 182, 0.9);
        }
        
        .slider-handle::after {
            content: '◄ ►';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--azul-petroleo);
            font-size: 1rem;
            font-weight: bold;
            letter-spacing: -2px;
        }
        
        .comparison-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            gap: 15px;
        }
        
        .comparison-label {
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            padding: 10px 20px;
            border-radius: 8px;
            font-family: 'Bungee', cursive;
            font-size: 1rem;
            text-align: center;
        }
        
        /* Bônus 2: Demonstração Técnica */
        .demo-steps {
            background-color: var(--off-white);
            color: var(--azul-petroleo);
        }
        
        .demo-steps-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .demo-step {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 30px;
            align-items: center;
            background-color: var(--azul-petroleo);
            color: var(--off-white);
            padding: 30px;
            border-radius: 15px;
            border-left: 10px solid var(--verde-tecnologico);
            box-shadow: 10px 10px 0 var(--verde-escuro);
            transition: transform 0.3s ease;
        }
        
        .demo-step:hover {
            transform: translateX(10px);
        }
        
        .demo-step-number {
            width: 80px;
            height: 80px;
            background-color: var(--verde-tecnologico);
            color: var(--azul-petroleo);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bungee', cursive;
            font-size: 2.5rem;
        }
        
        .demo-step-content h3 {
            color: var(--verde-tecnologico);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .demo-step-content p {
            font-size: 1.2rem;
        }
        
        /* FAQ */
        .faq {
            background-color: var(--off-white);
            color: var(--azul-petroleo);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 3px solid var(--verde-tecnologico);
            border-radius: 10px;
            overflow: hidden;
            background-color: var(--azul-petroleo);
            transition: box-shadow 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(4, 200, 182, 0.25);
        }
        
        .faq-question {
            background-color: var(--azul-petroleo);
            color: var(--verde-tecnologico);
            padding: 22px 25px;
            font-family: 'Bungee', cursive;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            -webkit-user-select: none;
            transition: background-color 0.25s ease;
        }

        .faq-question:hover {
            background-color: rgba(4, 200, 182, 0.1);
        }
        
        .faq-question i {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.2rem;
            color: var(--verde-tecnologico);
            flex-shrink: 0;
            margin-left: 15px;
        }
        
        .faq-answer {
            background-color: var(--azul-petroleo);
            color: var(--off-white);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 25px 25px 25px;
            font-size: 1.15rem;
            line-height: 1.7;
            border-top: 1px solid rgba(4, 200, 182, 0.2);
            padding-top: 15px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ==============================
   SEÇÃO INSTAGRAM
   ============================== */

.instagram-section {
    background-color: var(--cinza-grafite);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(4, 200, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(4, 200, 182, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.instagram-section .container {
    position: relative;
    z-index: 2;
}

/* Container principal */
.elfsight-container {
    background-color: rgba(0, 41, 55, 0.7);
    border-radius: 20px;
    border: 3px solid var(--verde-tecnologico);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.elfsight-app-e0d9d335-ce45-49b5-84b5-3d5982ba1350 {
    margin-bottom: 25px;
}

.insta-post {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--verde-tecnologico);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.insta-post:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(4, 200, 182, 0.4);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.insta-post:hover img {
    transform: scale(1.08);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 41, 55, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--off-white);
    padding: 15px;
    text-align: center;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2.2rem;
    color: var(--verde-tecnologico);
}

.insta-overlay span {
    font-family: 'Share Tech', sans-serif;
    font-size: 1.1rem;
    color: var(--verde-tecnologico);
    font-weight: bold;
}

/* CTA do Instagram */
.instagram-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(4, 200, 182, 0.3);
}

.instagram-handle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--off-white);
}

.instagram-handle i {
    color: var(--verde-tecnologico);
    font-size: 2rem;
}

.instagram-handle span {
    font-family: 'Share Tech', sans-serif;
    font-weight: bold;
    color: var(--verde-tecnologico);
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Estilo para quando o widget carregar */
.elfsight-widget-loaded .elfsight-wrapper {
    border: none;
    background-color: transparent;
}

.elfsight-widget-loaded .elfsight-widget-placeholder {
    display: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .elfsight-container {
        padding: 30px;
    }
    
    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .elfsight-container {
        padding: 25px;
    }
    
    .instagram-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .instagram-handle {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .elfsight-container {
        padding: 20px 15px;
    }
    
    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .instagram-cta .btn {
        width: 100%;
        justify-content: center;
    }
}
        
        /* Footer */
        footer {
            background-color: var(--cinza-grafite);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-family: 'Bungee', cursive;
            font-size: 2.5rem;
            color: var(--verde-tecnologico);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--off-white);
        }
        
        .footer-text {
            color: var(--off-white);
            max-width: 600px;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .footer-contact {
            color: var(--off-white);
            font-size: 1.1rem;
        }
        
        /* Responsividade */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .benefits-cards,
            .device-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 2rem;
            }
            
            .about-content,
            .award-content {
                grid-template-columns: 1fr;
            }
            
            .benefits-cards,
            .device-steps,
            .device-data,
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .final-cta h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .final-cta-buttons {
                flex-direction: column;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
        }