﻿    /* :root {
       --cor-escura: #612c2c;
       --cor-base: #8a3939;
       --cor-clara: #ac5454;
       --cor-light: #f5cbcb;
       --cor-superlight: #ffe7e7;


   } */
    
     :root {
        --cor-escura: #821921;
        --cor-base: #b72230;
        --cor-clara: #d84c62;
        --cor-light: #e27d8c;
        --cor-superlight: #fbebee;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Anta';
    }
    
    body,
    html {
        height: 100vh;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    a {
        cursor: pointer;
        text-decoration: none;
    }
    
    h1 {
        margin: 0;
    }
    
    h2 {
        margin: 40px 0;
        font-weight: normal;
    }
    
    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24
    }
    
    .cheio {
        font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48
    }
    /* ************************************** */
    
    section {
        position: relative;
    }
    
    section .conteudo {
        width: 80%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    section .el-1 {
        width: 80%;
    }
    
    #apresentacao .el-1 {
        animation: flutuar 4s ease-in-out infinite;
    }
    
    @keyframes flutuar {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    section .titulo {
        font-size: 60px;
    }
    
    section .subtitulo {
        margin: 20px 0;
    }
    
    @media(max-width:990px) {
        section .conteudo {
            width: 90%;
            flex-direction: column;
        }
        section .titulo {
            font-size: 45px;
        }
    }
    /*  */
    
    .a-direita {
        text-align: right;
    }
    
    .pad-100 {
        padding: 100px 0;
    }
    /*  */
    
    .cor-escura {
        color: var(--cor-escura);
    }
    
    .cor-base {
        color: var(--cor-base);
    }
    
    .cor-clara {
        color: var(--cor-clara);
    }
    
    .cor-light {
        color: var(--cor-light);
    }
    
    .cor-superLight {
        color: var(--cor-superlight);
    }
    /*  */
    
    .bg-gradiente {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    #apresentacao .bg-gradiente {
        background-image: url('../img/bg12.jpg');
        background-size: cover;
        background-position: center;
    }
    
    #sessao-2 .bg-gradiente {
        background-image: url('../img/bg11.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .bg-gradiente::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, white 30%, transparent);
    }
    /*  */
    /* ************************************** */
    
    header {
        width: 100%;
        height: 90px;
        position: fixed;
        padding: 0 10%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-image: linear-gradient(to bottom, #FFFFFF 70%, transparent);
        z-index: 100;
    }
    
    header.scrolled {
        background-color: white;
        box-shadow: 0 0 5px #ccc;
    }
    
    header #logo {
        height: 40px;
    }
    
    header #ico-menu,
    header #ico-person {
        display: none;
    }
    
    header nav ul {
        list-style: none;
    }
    
    header nav ul li {
        display: flex;
    }
    
    header nav ul li a {
        color: gray;
        padding: 10px 20px;
        &:hover {
            background-color: #dddddd;
            color: black;
            border-radius: 10px;
            transition: all 0.5s;
        }
    }
    
    @media(max-width:990px) {
        header {
            padding: 0 10px;
            position: fixed;
            height: 70px;
        }
        header #logo {
            height: 30px;
        }
        header #ico-person {
            width: 35px;
            height: 35px;
            position: absolute;
            top: 15px;
            right: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            background-color: var(--cor-clara);
            color: var(--cor-light);
            z-index: 300;
        }
        header #ico-person .material-symbols-outlined {
            font-size: 35px;
        }
        header #ico-menu {
            display: block;
            position: absolute;
            top: 15px;
            right: 10px;
            z-index: 300;
            font-size: 40px;
        }
        header nav {
            position: fixed;
            top: 60px;
            right: 10px;
            background-color: white;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            /* Impede interação enquanto invisível */
            transition: opacity 0.5s ease, visibility 0s 0.5s, pointer-events 0s 0.5s;
        }
        header nav.show {
            border-radius: 10px 0 10px 10px;
            box-shadow: 0 0 10px gray;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            /* Permite interação quando visível */
            transition: opacity 0.5s ease, visibility 0s 0s, pointer-events 0s 0s;
        }
        header nav ul li {
            flex-direction: column;
        }
    }
    /* ************************************** */
    
    #main {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #iconeLogo {
        width: 150px;
    }
    
    @media (max-width:990px) {
        #iconeLogo {
            width: 30%;
        }
    }
    /* ************************************** */
    
    #apresentacao {
        padding-top: 90px;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    
    #apresentacao .chamada {
        color: var(--cor-base);
    }
    
    #apresentacao h1 {
        font-size: 70px;
        font-weight: 700;
    }
    
    #apresentacao p {
        margin: 40px 0;
        font-weight: normal;
    }
    
    #apresentacao .conteudo>div {
        width: 50%;
    }
    
    #apresentacao .conteudo>div:nth-child(2) {
        text-align: center;
    }
    
    @media(max-width:990px) {
        #apresentacao {
            flex-direction: column;
            padding: 90px 20px 20px 20px;
            height: 100%;
        }
        #apresentacao h1 {
            font-size: 45px;
            line-height: 45px;
        }
        #apresentacao p {
            margin: 25px 0;
            font-size: 20px;
        }
        #apresentacao img {
            width: 100%;
        }
        #apresentacao .conteudo>div {
            width: 100%;
            margin-bottom: 20px;
        }
    }
    /* ************************************** */
    
    #sessao-1 {
        position: relative;
        overflow: hidden;
        padding: 120px 0;
    }
    
    #sessao-1 .sobre-conteudo {
        width: 86%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
    
    #sessao-1 .sobre-imagem {
        position: relative;
        padding-bottom: 30px;
        padding-right: 30px;
    }
    
    #sessao-1 .sobre-fundo {
        position: absolute;
        top: -30px;
        left: -30px;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--cor-light) 0%, var(--cor-superlight) 100%);
        border-radius: 24px;
        transform: rotate(-3deg);
        z-index: 0;
    }
    
    #sessao-1 .sobre-imagem img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 30px 60px rgba(97, 44, 44, 0.3);
    }
    
    #sessao-1 .sobre-badge {
        position: absolute;
        z-index: 2;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--cor-base), var(--cor-clara));
        color: #fff;
        padding: 18px 26px;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(138, 57, 57, 0.45);
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    #sessao-1 .sobre-badge .material-symbols-outlined {
        font-size: 2.4rem;
        color: var(--cor-light);
    }
    
    #sessao-1 .sobre-badge strong {
        font-size: 1.5rem;
        line-height: 1;
        display: block;
    }
    
    #sessao-1 .sobre-badge p {
        font-size: 0.85rem;
        opacity: 0.85;
        margin: 4px 0 0;
    }
    
    #sessao-1 .sobre-tag {
        display: inline-block;
        background: var(--cor-light);
        color: var(--cor-escura);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 0.8rem;
        padding: 8px 18px;
        border-radius: 30px;
        margin-bottom: 1.4rem;
    }
    
    #sessao-1 .sobre-texto h2 {
        font-size: clamp(1.9rem, 3.4vw, 2.9rem);
        line-height: 1.15;
        color: var(--cor-escura);
        font-weight: 700;
        margin: 0 0 1.4rem;
    }
    
    #sessao-1 .sobre-destaque {
        color: var(--cor-base);
    }
    
    #sessao-1 .sobre-texto>p {
        color: #6b6b6b;
        font-size: 1.08rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }
    
    #sessao-1 .sobre-lista {
        list-style: none;
        padding: 0;
        margin: 0 0 2.4rem;
        display: grid;
        gap: 1rem;
    }
    
    #sessao-1 .sobre-lista li {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: #4a4a4a;
        font-size: 1.02rem;
    }
    
    #sessao-1 .sobre-lista .material-symbols-outlined {
        color: var(--cor-base);
        font-size: 1.4rem;
        min-width: 24px;
    }
    
    #sessao-1 .sobre-btn {
        display: inline-block;
        padding: 13px 34px;
        background: linear-gradient(90deg, var(--cor-base), var(--cor-clara));
        color: #fff;
        border-radius: 30px;
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(138, 57, 57, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }
    
    #sessao-1 .sobre-btn:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(138, 57, 57, 0.45);
    }
    
    @media (max-width: 990px) {
        #sessao-1 {
            padding: 80px 0;
        }
        #sessao-1 .sobre-conteudo {
            grid-template-columns: 1fr;
            gap: 4rem;
        }
    }
    /* ************************************** */
    
    .btn {
        padding: 10px 30px;
        background-color: var(--cor-base);
        color: white;
        border-radius: 20px;
        cursor: pointer;
        &:hover {
            background-color: var(--cor-clara);
            box-shadow: 0 0 10px 10px var(--cor-light);
            transition: all 1s ease;
        }
    }
    
    .btn-2 {
        padding: 10px 30px;
        background-color: transparent;
        color: black;
        border: 2px solid var(--cor-base);
        border-radius: 20px;
        cursor: pointer;
        &:hover {
            color: white;
            box-shadow: none;
            transition: all 0.5s ease;
        }
    }
    
    #btns {
        display: flex;
    }
    
    #tel {
        font-weight: 900;
        font-size: 30px;
        margin-left: 20px;
        display: flex;
        align-items: center;
        color: gray;
    }
    
    #tel .material-symbols-outlined {
        font-size: 30px;
        margin-right: 10px;
    }
    
    #tel .fa,
    #tel .fab {
        font-size: 30px;
        margin-right: 10px;
    }
    
    @media(max-width:990px) {
        #btns,
        .btn-2 {
            display: none;
        }
    }
    /* ************************************** */
    /* PLANOS */
    
    .plano {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 30%;
        padding: 20px;
        text-align: center;
        position: relative;
        &:hover {
            background-color: #dfdfdf;
            color: #000;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
    }
    
    .plano.popular {
        /* background-color: #df8f8f; */
        background-image: url(cdn/img/bg11.jpg);
        color: #000;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        &:hover {
            background-image: none;
            background-color: #dfdfdf;
            color: #000;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
    }
    
    .plano.popular .badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        color: var(--cor-base);
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.9em;
        font-weight: bold;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .plano h3 {
        font-size: 1.5em;
        margin: 0 0 10px;
        color: var(--cor-base);
    }
    
    .plano .price {
        font-size: 2.5em;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .plano .price span {
        font-size: 0.5em;
        font-weight: normal;
    }
    
    .plano .description {
        font-size: 0.9em;
        color: white#555;
        margin: 10px 0 20px;
    }
    
    .plano hr {
        border: none;
        border-top: 1px solid #ddd;
        margin: 20px 0;
    }
    
    .plano ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }
    
    .plano ul li {
        margin: 10px 0;
        font-size: 0.9em;
    }
    
    .plano button {
        background-color: var(--cor-base);
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 1em;
        cursor: pointer;
        margin-top: 20px;
        &:hover {
            background-color: var(--cor-escura);
        }
    }
    
    .plano.popular button {
        background-color: #fff;
        color: var(--cor-base);
        &:hover {
            background-color: var(--cor-base);
            color: white;
        }
    }
    
    .div-80 {
        width: 80%;
        padding: 50px 0;
        display: flex;
        justify-content: space-between;
        margin: auto;
    }
    
    @media(max-width:990px) {
        .div-80 {
            flex-direction: column;
        }
        .plano {
            width: 100%;
            margin-bottom: 30px;
        }
    }
    /* ************************************* */
    
    #sessao-3 {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 0;
        overflow: hidden;
    }
    
    #sessao-3 .image-background {
        position: absolute;
        inset: 0;
        background-image: url('../img/fale-conosco.avif');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    #sessao-3 .contact-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, rgba(38, 9, 9, 0.92) 0%, rgba(97, 44, 44, 0.82) 45%, rgba(172, 84, 84, 0.55) 100%);
    }
    
    #sessao-3 .contact-content {
        position: relative;
        z-index: 1;
        width: 86%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    #sessao-3 .contact-info {
        color: #fff;
    }
    
    #sessao-3 .contact-tag {
        display: inline-block;
        background: var(--cor-light);
        color: var(--cor-escura);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 0.8rem;
        padding: 8px 18px;
        border-radius: 30px;
        margin-bottom: 1.5rem;
    }
    
    #sessao-3 .contact-info h2 {
        margin: 0 0 1.2rem;
        font-size: clamp(1.8rem, 3.2vw, 2.8rem);
        line-height: 1.2;
    }
    
    #sessao-3 .contact-info>p {
        font-size: 1.05rem;
        opacity: 0.85;
        max-width: 44ch;
        margin-bottom: 2.2rem;
    }
    
    #sessao-3 .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 1.4rem;
    }
    
    #sessao-3 .contact-list li {
        display: flex;
        align-items: center;
        gap: 1.1rem;
    }
    
    #sessao-3 .contact-list li>.material-symbols-outlined {
        width: 52px;
        height: 52px;
        min-width: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 14px;
        color: var(--cor-light);
        font-size: 1.6rem;
    }
    
    #sessao-3 .contact-list strong {
        display: block;
        font-size: 0.95rem;
        letter-spacing: 0.4px;
    }
    
    #sessao-3 .contact-list p {
        margin: 4px 0 0;
        opacity: 0.8;
    }
    
    #sessao-3 .contact-list a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        transition: border-color 0.3s ease, color 0.3s ease;
    }
    
    #sessao-3 .contact-list a:hover {
        color: var(--cor-light);
        border-color: var(--cor-light);
    }
    /*  */
    
    #sessao-3 .contact-form {
        background: #fff;
        padding: 2.8rem;
        border-radius: 24px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    }
    
    #sessao-3 .contact-form h3 {
        margin: 0 0 1.8rem;
        font-size: 1.6rem;
        color: var(--cor-escura);
        position: relative;
        padding-bottom: 1rem;
    }
    
    #sessao-3 .contact-form h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 56px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--cor-base), var(--cor-clara));
    }
    
    #sessao-3 .form-group {
        margin-bottom: 1.1rem;
    }
    
    #sessao-3 .form-group label {
        display: block;
        margin-bottom: 0.45rem;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--cor-escura);
    }
    
    #sessao-3 .form-group input,
    #sessao-3 .form-group textarea {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 2px solid #eee;
        border-radius: 12px;
        font-size: 1rem;
        color: #333;
        background: #fafafa;
        transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        outline: none;
    }
    
    #sessao-3 .form-group input:focus,
    #sessao-3 .form-group textarea:focus {
        border-color: var(--cor-clara);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(172, 84, 84, 0.15);
    }
    
    #sessao-3 .form-group input::placeholder,
    #sessao-3 .form-group textarea::placeholder {
        color: #b9b9b9;
    }
    
    #sessao-3 .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    #sessao-3 .contact-form button {
        width: 100%;
        padding: 0.95rem;
        margin-top: 0.4rem;
        background: linear-gradient(90deg, var(--cor-base), var(--cor-clara));
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        box-shadow: 0 10px 24px rgba(138, 57, 57, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }
    
    #sessao-3 .contact-form button .material-symbols-outlined {
        font-size: 1.2rem;
    }
    
    #sessao-3 .contact-form button:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(138, 57, 57, 0.45);
    }
    
    @media (max-width: 990px) {
        #sessao-3 {
            padding: 80px 0;
        }
        #sessao-3 .contact-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        #sessao-3 .contact-form {
            padding: 2rem;
        }
    }
    /* ************************************ */
    
    footer {
        /* display: flex;
            justify-content: space-between; */
        padding: 2rem;
        background-color: #333;
        color: white;
    }
    
    footer .conteudo {
        display: flex;
        width: 80%;
        margin: auto;
    }
    
    .footer-column {
        flex: 1;
        margin: 0 1rem;
    }
    
    .footer-column h3 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
        color: #d8d8d8;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul li a {
        color: #a5a5a5;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-column ul li a:hover {
        color: #fff;
    }
    
    .footer-column img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    footer .assinatura {
        text-align: center;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        color: #919191;
    }
    
    @media (max-width:990px) {
        footer {
            padding: 3rem 2rem 2rem;
        }
        footer .conteudo {
            flex-direction: column;
            gap: 2.25rem;
        }
        footer .assinatura {
            margin-top: 2.5rem;
            padding-top: 1.75rem;
        }
    }