/* ========= BASE GLOBAL ========= */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Tenor Sans', sans-serif;
    background-color: #2C2C2C;
    color: #FFFFFF;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

/* ========= CONTAINER PADRÃO ========= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

/* ========= TIPOGRAFIA GLOBAL ========= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Tenor Sans', sans-serif;
    font-weight: normal;
    color: #00CFFF;
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: break-word;
}
h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; text-transform: uppercase; }

/* ========= HEADER ========= */
.header {
    background-color: #FFFFFF;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 95, 122, 0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.header .logo img {
    height: 78px;
    width: 100px;
    object-fit: contain;
    max-width: 100%;
}

/* ========= MENU ========= */
.menu {
    display: flex;
}
.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.menu ul li a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 600;
    transition: color 0.3s;
}
.menu ul li a:hover {
    color: #00CFFF;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #2C2C2C;
    border-radius: 3px;
}

@media (max-width: 992px) {
    .menu {
        position: absolute;
        top: 70px;
        right: 16px;
        left: unset;
        background-color: #FFFFFF;
        width: 250px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,95,122,0.15);
        display: none;
        flex-direction: column;
        padding: 20px;
        max-width: 90vw;
        overflow-x: auto;
    }
    .menu ul {
        flex-direction: column;
        gap: 20px;
    }
    .menu.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}

/* ========= HERO ========= */
.hero {
    width: 100%;
    max-width: 100vw;
    height: 600px;
    background: url('../images/banner-home.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}
.texto-banner {
    background-color: rgba(44, 44, 44, 0.85);
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    color: #FFFFFF;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.texto-banner h1 { font-size: 38px; margin-bottom: 20px; }
.texto-banner .subtitulo {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00CFFF;
    font-weight: 300;
}
.texto-banner .slogan {
    display: inline-block;
    font-size: 16px;
    background-color: #00CFFF;
    padding: 8px 20px;
    border-radius: 30px;
    color: #2C2C2C;
    font-weight: bold;
    white-space: normal;
    max-width: 100%;
}

/* ========= SEÇÃO SERVIÇOS ========= */
.servicos {
    padding: 80px 0;
    background-color: #2C2C2C;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;
}
.servicos .card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,207,255,0.08);
    transition: transform 0.3s;
    text-align: left;
    min-width: 0;
    max-width: 100%;
}
.servicos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,207,255,0.16);
}
.servicos .card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    max-width: 100%;
}
.servicos .card p {
    color: #005F7A;
    line-height: 1.6;
    font-size: 16px;
    word-break: break-word;
}

/* ========= SOBRE ========= */
.sobre {
    padding: 80px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.sobre h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #00CFFF;
    font-family: 'Tenor Sans', sans-serif;
}
.sobre-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
.sobre-conteudo .texto {
    flex: 1 1 320px;
    min-width: 0;
    max-width: 100%;
}
.sobre-conteudo .texto p {
    color: #005F7A;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
    word-break: break-word;
}
.sobre-conteudo .texto ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}
.sobre-conteudo .texto ul li {
    margin-bottom: 10px;
    color: #005F7A;
    line-height: 1.6;
    font-size: 16px;
    word-break: break-word;
}
.sobre-conteudo .texto ul li strong {
    font-weight: 600;
    color: #2C2C2C;
}
.sobre-conteudo .imagem {
    flex: 1 1 240px;
    min-width: 0;
    max-width: 100%;
}
.sobre-conteudo .imagem img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-width: 100%;
}

/* ========= CONTATO ========= */
.contato {
    padding: 80px 0;
    background-color: #2C2C2C;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.contato h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #00CFFF;
    font-family: 'Tenor Sans', sans-serif;
}
.contato-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
.contato-conteudo .texto {
    flex: 1 1 320px;
    min-width: 0;
    max-width: 100%;
}
.contato-conteudo .texto p {
    color: #00CFFF;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
    word-break: break-word;
}
.contato-conteudo .texto ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}
.contato-conteudo .texto ul li {
    margin-bottom: 10px;
    color: #00CFFF;
    line-height: 1.6;
    font-size: 16px;
    word-break: break-word;
}
.contato-conteudo .texto ul li strong {
    font-weight: 600;
    color: #005F7A;
}
.contato-conteudo .texto ul li a {
    color: #00CFFF;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
}
.contato-conteudo .texto ul li a:hover {
    text-decoration: underline;
    color: #005F7A;
}
.contato-conteudo .imagem {
    flex: 1 1 240px;
    min-width: 0;
    max-width: 100%;
}
.contato-conteudo .imagem img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-width: 100%;
}

/* ========= FOOTER ========= */
.footer {
    background-color: #005F7A;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
.footer a {
    color: #00CFFF;
    text-decoration: underline;
}

/* ========= RESPONSIVO ========= */
@media (max-width: 800px) {
    .sobre-conteudo,
    .contato-conteudo {
        flex-direction: column;
        gap: 24px;
    }
    .texto-banner {
        padding: 24px;
    }
    .hero {
        height: 340px;
        padding: 0 8px;
    }
}
@media (max-width: 600px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    .header {
        padding: 10px 8px;
    }
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .sobre,
    .contato,
    .servicos {
        padding: 40px 0;
    }
    .footer {
        padding: 16px 0;
    }
}

/* ========= IMAGENS, VÍDEOS E IFRAME ========= */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
