@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Italianno&family=Kanchenjunga&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Rubik&display=swap');

:root {
    --pretoClaro: #262626;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
}

* {
    /* border: 1px solid red; */
}

h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;

    /* Escala fluida */
    font-size: clamp(3rem, 12vw, 14rem);

    /* Texto ocupa toda a largura */
    width: 100%;
    max-width: 100%;

    /* Quebra corretamente */
    white-space: normal;
    word-break: break-word;
    line-height: 0.9;

    margin: 0;
}

h2 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
}

h3 {
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
}

h4 {
    font-family: "Public Sans", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.4;
}

h5 {
    font-family: "Public Sans", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
}

h6 {
    font-family: "Public Sans", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

p {
    font-family: "Public Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

body {
    margin: 0;
}

/* BOTÃO */
.button {
    background: transparent;
    border: 1px solid #AF8B63;
    padding: 16px 42px;
    border-radius: 999px;
    font-family: "Public Sans", sans-serif;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #AF8B63;
    text-decoration: none;
    text-align: center;
}

.button span {
    font-weight: 700;
}

.button i {
    font-size: 22px;
}

/* HOVER BOTÃO */
.button:hover {
    background: #AF8B63;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);

    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* MENU DESKTOP */
header ul {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

header ul li {
    list-style: none;
    cursor: pointer;
}


.menu ul li a {
    text-decoration: none;
    color: var(--pretoClaro);
    font-weight: 500;


}

.menuToggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}


@media (max-width: 900px) {

    .menuToggle {
        display: block;
        color: #111;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 55%;
        height: 100vh;

        background: #1111118e;
        padding: 100px 30px;

        transition: right 0.4s ease;
    }

    .menu.active {
        right: 0;
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        list-style: none;
    }



    .menu ul li a {
        color: #ffffffc2;
        font-size: 1.2rem;
    }

    .menuOverlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .menuOverlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}



/* HERO / CONTAINER INICIAL */
.container-inicial {
    height: 100vh;
    background-image: url('./img/ContainerInicial/inicio.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    flex-direction: column;
    padding: 0 5vw;
    /* respiro lateral */
}

.container-inicial>div {
    width: 100%;

}

.container-inicial .experiencia {
    text-align: right;
    width: 40%;
}

.container-inicial h1 {
    text-align: center;
    color: white;

}
.container-inicial h2 {
    text-align: center;
    color: white;
}
.container-inicial h5 {
        color: white;
    }


@media (max-width: 900px) {

    .container-inicial h1 {
        color: white;

    }

    .container-inicial h5 {
        font-size: 0.8rem;
        color: white;
    }

    .container-inicial .experiencia {
        width: 55%;

    }
}

/* CONTAINER GERAL */
.nossosServicos {
    padding: 120px 5vw;
    background: #f9f9f9;
}

/* TÍTULO */
.nossosServicos>h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: left;
    margin-bottom: 80px;
    line-height: 1;
}

.nossosServicos>h2 strong {
    /* display: block; */
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #888;
}

/* GRID DE CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGEM */
.card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* DESCRIÇÃO */
.card .desc {
    padding: 30px;
}

/* SUB-TÍTULO */
.sub-titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sub-titulo h2 {
    font-family: "Public Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.sub-titulo i {
    font-size: 1.5rem;
    color: #000;
    transition: transform 0.4s ease;
}

/* TEXTO */
.exp {
    font-family: "Public Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* HOVER ÍCONE */
.card:hover .sub-titulo i {
    transform: rotate(45deg);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card img {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .nossosServicos {
        padding: 80px 6vw;
    }

    .card img {
        height: 260px;
    }


    .nossosServicos>h2 {
        font-size: clamp(1rem, 3vw, 5rem)
    }

    .nossosServicos>h2 strong {
        font-size: clamp(1rem, 3vw, 5rem)
    }
}


/* CONTAINER PRINCIPAL */
.conhecaCarolina {
    padding: 140px 5vw;
    background: #f4f6f0;
}

/* TÍTULO */
.conhecaCarolina>h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: left;
    margin-bottom: 100px;
    line-height: 1;
}

.conhecaCarolina>h2 strong {
    display: block;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #888;
}

/* GRID DR */
.containerDr {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* IMAGEM */
.imgDr {
    position: relative;
}

.imgDr img {
    width: 100%;
    height: 820px;
    object-fit: cover;
    border-radius: 4px;
}

/* DESCRIÇÃO */
.descDr p {
    font-family: "Public Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

/* BOTÃO */
.descDr button {
    background: transparent;
    border: 1px solid #AF8B63;
    padding: 16px 42px;
    border-radius: 999px;
    font-family: "Public Sans", sans-serif;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #AF8B63;
}

.descDr button span {
    font-weight: 700;
}

.descDr button i {
    font-size: 22px;
}

/* HOVER BOTÃO */
.descDr button:hover {
    background: #AF8B63;
    color: #fff;
}

@media (max-width: 900px) {
    .containerDr {
        grid-template-columns: 1fr;
        /* empilha */
        gap: 50px;
    }

    .imgDr img {
        height: 420px;
    }

    .descDr {
        text-align: center;
    }

    .descDr button {
        margin: 0 auto;
    }
}


/* CONTAINER PRINCIPAL */
.Containerqualificacoes {
    position: relative;
    padding: 140px 5vw 200px;
    background-image: url('./img/qualificacoes-certicacoes.webp');
    /* sua imagem */
    background-size: cover;
    background-position: center;
    overflow: visible;
    /* overflow-x: hidden; */

}

/* Overlay escuro para leitura */
.Containerqualificacoes::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* Tudo acima do overlay */
.Containerqualificacoes>* {
    position: relative;
    z-index: 1;
}

/* TÍTULO */
.Containerqualificacoes h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    text-align: left;
    margin-bottom: 80px;
}

/* GRID DE CARDS (2 POR LINHA) */
.groupCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 120px;
}

/* CARD CERT */
.cardCert {
    background: rgba(0, 0, 0, 0.301);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 24px;
    padding: 40px;
    color: #fff;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* TÍTULO DO CARD */
.cardCert h3 {
    font-family: "Public Sans", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* TEXTO */
.cardCert p {
    font-family: "Public Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.imgCertificacoes {
    position: absolute;
    bottom: -70px;

    left: 4vw;
    right: 4vw;
    /* ocupa quase 100% sem estourar */

    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;

    padding: 30px 40px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* IMAGENS IGUAIS */
.imgCertificacoes img {
    width: 320px;
    height: 150px;
    object-fit: contain;
}

.imgCertificacoes h3 {
    font-weight: 800;
}

.imgCertificacoes p {
    font-size: 1.1rem;
    color: #333;
    font-family: ;
}

@media (max-width: 900px) {
    .groupCards {
        grid-template-columns: 1fr;
    }

    .imgCertificacoes {
        /* flex-wrap: wrap; */
        justify-content: center;
        bottom: -100px;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        bottom: -80px;
        height: auto;

    }

    .imgCertificacoes h3 {
        font-size: 1.2rem;
    }

    .imgCertificacoes button {
        font-size: 1.3rem;
    }

    .imgCertificacoes p {
        font-size: 0.8rem;
    }
}

/* CONTAINER PRINCIPAL */
.containerFormulario {
    padding: 160px 5vw 140px;
    background: #ffffff;
}

/* TÍTULO */
.containerFormulario>h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    text-align: center;
    margin-bottom: 100px;
}

/* GRID */
.divContato {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.info h4 {
    font-family: "Public Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 24px;
    color: #333;
}

/* ÍCONES COM GRADIENT */
.info i {
    font-size: 1.6rem;

    background: linear-gradient(45deg, #FF6C1A, #A83ADC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUTS E TEXTAREA */
.form input,
.form textarea, .form select{
    font-family: "Public Sans", sans-serif;
    font-size: 1rem;

    padding: 16px 18px;
    border-radius: 10px;

    border: 1px solid #ddd;
    outline: none;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* TEXTAREA */
.form textarea {
    min-height: 140px;
    resize: vertical;
}

/* FOCUS */
.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #AF8B63;
    box-shadow: 0 0 0 3px rgba(175, 139, 99, 0.15);
}

.form button {
    margin-top: 10px;

    background: #AF8B63;
    color: #fff;

    border: none;
    border-radius: 999px;

    padding: 16px 42px;
    font-family: "Public Sans", sans-serif;
    font-size: 1rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 👈 isso resolve */

    gap: 12px;

    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(175, 139, 99, 0.4);
}

@media (max-width: 900px) {
    .divContato {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .containerFormulario {
        padding: 120px 6vw;
    }
}


.footer {
    background: #EEEEEE;
    padding: 5px 5vw;

    text-align: center;

    font-family: "Public Sans", sans-serif;
    font-size: 0.9rem;
    color: #666;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #AF8B63;
    margin: 0 auto 16px;
}

.wppFluid {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 1009;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Ícone */
.wppFluid i {
    font-size: 2.2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Hover elegante */
.wppFluid:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Efeito pulse suave */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wppFluid {
    animation: pulse 2.5s infinite;
}