:root {
    --verde: #0B4D3B;
    --grafite: #2E2E2E;
    --amarelo: #F2C94C;
    --cinza-claro: #F5F5F5;
}

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

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--grafite);
    line-height: 1.6;
/* Opcional: dificulta seleção/cópia */
    -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS Safari */
}

/* Permite selecionar em campos */
input, textarea{
  -webkit-user-select: text;
  user-select: text;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit;
}



.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-carousel video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.video-carousel video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    top: 50%;
    transform: translateY(-50%);
}


.reveal {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: scale(1);
}


.section-focus {
    transition: transform 0.6s ease;
}

.section-focus.active {
    transform: scale(1.02);
}