
body {
    background-color: var(--cinza-fundo-claro);
    color: var(--cinza-texto-escuro);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--vermelho-venom);
    color: var(--branco);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

.btn:hover {
    background-color: var(--cinza-principal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
    box-shadow: none;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: var(--branco);
    color: var(--cinza-texto-escuro);
}

header {
    background-color: var(--cinza-fundo-escuro);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--cinza-principal);
}

header .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--cinza-medio-detalhe);
}

.logo img {
    width: 150px;
    height: 70px;
}

.hero {
    background-color: var(--cinza-fundo-escuro);
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 55%;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--cinza-medio-detalhe);
}

.hero p {
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0 0 40px 0;
    color: #e2e8f0;
}

.hero-image {
    flex: 1;
    max-width: 100%;
    position: relative;
    left: 20%;
    display: flex;
    justify-content: flex-end;
    background-color: var(--cinza-principal);
}

.hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(65%) contrast(110%);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--cinza-fundo-escuro) 0%, rgba(45, 55, 72, 0.3) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.problema {
    padding: 25px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--cinza-texto-escuro);
}

.section-title span {
    color: var(--cinza-principal);
    font-weight: 700;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    place-items: center;
}

.card-problema img {
    width: 200px;
    transition: transform 0.3s ease;
}

.card-problema:hover img {
    transform: translateY(-5px);
}

.card-problema h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cinza-texto-escuro);
}

.card-problema p {
    font-size: 0.95rem;
    color: #4A5568;
}

.solucao {
    background-color: var(--cinza-fundo-escuro);
    color: var(--branco);
    padding: 40px 0;
}

.solucao .section-title {
    color: var(--branco);
    margin-bottom: 20px;
}

.passos-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.passo-item {
    flex: 1;
    position: relative;
    z-index: 2;
}

.numero-wrapper {
    display: inline-flex;
    align-items: center;
    background-color: var(--cinza-fundo-escuro);
    padding-right: 15px;
}

.numero {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--cinza-medio-detalhe);
    margin-right: 8px;
}

.passo-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F4F5F7;
    white-space: nowrap;
}

.passo-texto {
    font-size: 15px;
    color: #E2E8F0;
    line-height: 1.5;
    margin-top: 12px;
    padding-right: 10px;
}

.servicos {
    padding: 60px 0;
    background-color: var(--branco);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servico-card {
    background-color: var(--cinza-fundo-claro);
    padding: 40px 25px;
    border-radius: 6px;
    border: 1px solid var(--cinza-fundo-medio);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 85, 104, 0.15);
}

.servico-card h3 {
    font-size: 1.3rem;
    color: var(--cinza-texto-escuro);
    margin-bottom: 15px;
}

.servico-card p {
    font-size: 0.95rem;
    color: var(--cinza-principal);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.servico-card .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.depoimentos {
    background-color: var(--branco);
    padding: 80px 0;
}

.card-depoimento {
    background-color: var(--cinza-fundo-claro);
    padding: 30px;
    border-radius: 6px;
    font-style: italic;
    position: relative;
}

.card-depoimento .autor {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-style: normal;
    color: var(--cinza-texto-escuro);
}

.cta-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--cinza-fundo-medio);
    padding: 20px 20px;
    text-align: center;
}

.cta-final h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--cinza-texto-escuro);
    margin-bottom: 30px;
}

.slideshow-wrapper {
    width: 100%;
    max-width: 750px;
    height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--cinza-fundo-escuro);
}

.slideshow {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s ease;
}

.slide {
    width: 20%;
    height: 100%;
    transition: opacity 0.5s;
}

.slide img {
    width: 100%;
    height: 100%;
}

.vimeo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cinza-fundo-escuro);
}

iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    object-fit: cover;
}

input[type="radio"] {
    display: none;
}

#slide1:checked ~ .slideshow { transform: translateX(0%); }
#slide2:checked ~ .slideshow { transform: translateX(-20%); }
#slide3:checked ~ .slideshow { transform: translateX(-40%); }
#slide4:checked ~ .slideshow { transform: translateX(-60%); }
#slide5:checked ~ .slideshow { transform: translateX(-80%); }

.navigation-manual {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.manual-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.manual-btn:hover {
    transform: scale(1.2);
}

#slide1:checked ~ .navigation-manual label[for="slide1"],
#slide2:checked ~ .navigation-manual label[for="slide2"],
#slide3:checked ~ .navigation-manual label[for="slide3"],
#slide4:checked ~ .navigation-manual label[for="slide4"],
#slide5:checked ~ .navigation-manual label[for="slide5"] {
    background: var(--cinza-principal); 
    width: 14px;
    height: 14px;
}

footer {
    background-color: var(--cinza-fundo-escuro);
    color: var(--cinza-medio-detalhe);
    padding: 40px 0 20px 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--cinza-principal);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    color: var(--branco);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}