* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    line-height: 1.6;
}

/* SEÇÕES */
.section-bg {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero {
    F
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.light-overlay .overlay {
    background: rgba(0,0,0,0.4);
}

.container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 60px 24px;
    z-index: 2;
}

/* TEXTO */
h1 { font-size: 3rem; margin-bottom: 20px; }
h2 { font-size: 2.2rem; margin-bottom: 16px; }

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.05rem;
    max-width: 720px;
    margin-bottom: 14px;
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.85;
}

.credencial {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* LISTA */
.list {
    margin-top: 16px;
}

.list li {
    margin-bottom: 8px;
}

/* BOTÕES */
.btn-primary,
.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-primary {
    background: #1e88e5;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}


/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .section-bg {
        min-height: auto;
        padding: 80px 0;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    p  { font-size: 1rem; }

    .container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.6rem; }
    p  { font-size: 0.95rem; }
}

/* FOOTER */
.footer {
    background: #333;
    text-align: center;
    padding: 30px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    color: #ccc;
}

.footer-links {
    list-style: none;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* BOTÃO ÁREA DO CLIENTE (TOPO) */
.top-client-area {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
}

.btn-client {
    padding: 8px 16px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}

.btn-client:hover {
    background: rgba(255,255,255,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .top-client-area {
        top: 16px;
        right: 16px;
    }

    .btn-client {
        font-size: 0.8rem;
        padding: 7px 14px;
    }
}

/* BARRA SUPERIOR */
.top-bar {
    position: absolute;
    top: 20px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

/* LOGO */
.logo img {
    height: 36px;
    max-width: 180px;
}

/* MOBILE */
@media (max-width: 768px) {
    .top-bar {
        top: 16px;
        left: 16px;
        right: 16px;
    }

    .logo img {
        height: 30px;
    }

    .btn-client {
        font-size: 13px;
        padding: 6px 10px;
    }	
}

.image-box {
    width: 100%;
    margin-top: 30px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-form {
    max-width: 700px;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
}

blockquote {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #333;
    font-style: italic;
}

