

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f9fb;
    color: #222;
}



header {
    width: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    height: 80px;
    z-index: 1000;
    padding-left: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header .container{
width:100%;
max-width:100%;
margin:0;
height:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 60px;
}

.logo img {
    height: 170px;
    width: auto;
    display: block;
}

nav a {
    position: relative;
    margin-left: 30px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 18px;
    padding-bottom: 5px;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #2bb673;
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #6a1b9a;
}



.hero {
    display: flex;
    height: 100vh;
    margin-top: 90px;
}

.hero-left {
    width: 50%;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #5e2b97, #2bb673);
    color: white;
}

.hero-left h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left h1 span {
    font-weight: 300;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    background: white;
    color: #5e2b97;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    width: max-content;
    transition: 0.3s;
}

.btn:hover {
    background: #e0d7d7;
}

.hero-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(94, 43, 151, 0.2));
}



.sobre {
    padding: 120px 20px;
    background: white;
}

.container-sobre {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-img img {
    width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sobre-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sobre-text h2 span {
    color: #5e2b97;
}

.sobre-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.btn-outline {
    border: 2px solid #5e2b97;
    color: #5e2b97;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #5e2b97;
    color: white;
}



@media(max-width:900px) {

    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        padding: 60px 30px;
    }

    .container-sobre {
        flex-direction: column;
        text-align: center;
    }

    .sobre-img img {
        width: 100%;
    }
}

.hero-dados {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-dados div {
    display: flex;
    flex-direction: column;
}

.hero-dados h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.hero-dados span {
    font-size: 14px;
    opacity: 0.8;
}

.divider {
    height: 40px;
    width: 1px;
    background: #ddd;
}



.servicos {
    padding: 120px 20px;
    background: #f8f9fb;
}

.container-servicos {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.servicos h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.servicos h2 span {
    color: #5e2b97;
}

.subtitulo-servicos {
    color: #666;
    margin-bottom: 60px;
    font-size: 16px;
}

.cards-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-servico {
    background: white;
    padding: 40px 30px;
    width: 320px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.icone-servico {
    font-size: 35px;
    margin-bottom: 20px;
    background: #2bb673;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.card-servico h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.card-servico p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


@media(max-width:900px) {
    .cards-servicos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .cards-servicos {
        grid-template-columns: 1fr;
    }
}

.hero .btn {
    margin-top: 40px;
}

html {
    scroll-behavior: smooth;
}



.contato {
    padding: 120px 20px;
    background: #f3f4f8;
}

.container-contato {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contato-info {
    flex: 1;
}

.contato-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contato-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.info-item strong {
    color: #5e2b97;
    margin-bottom: 5px;
}

.btn-contato {
    display: inline-block;
    margin-top: 25px;
    background: #2bb673;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contato-destaque {
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(94, 43, 151, 0.08);
    border-left: 4px solid #5e2b97;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
}

.btn-contato:hover {
    background: #249e62;
}



.contato-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input,
.contato-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #5e2b97;
}

.contato-form button {
    background: #5e2b97;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contato-form button:hover {
    background: #4b227a;
}



footer {
    background: #1e1e1e;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}



@media(max-width:900px) {

    .container-contato {
        flex-direction: column;
    }

}



.info-item a {
    text-decoration: none;

    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}



.contato-destaque {
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(94, 43, 151, 0.08);
    border-left: 4px solid #5e2b97;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
}

.pagina-utilidades {
    padding: 140px 20px 80px;
    background: #f8f9fb;
    min-height: 100vh;
}

.container-utilidades {
    max-width: 1000px;
    margin: auto;
}

.pagina-utilidades h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #5e2b97;
}

.bloco-utilidade {
    margin-bottom: 60px;
}

.bloco-utilidade h2 {
    font-size: 26px;
    margin-bottom: 20px;
    border-left: 5px solid #2bb673;
    padding-left: 15px;
}

.bloco-utilidade ul {
    list-style: none;
}

.bloco-utilidade li {
    margin-bottom: 15px;
}

.bloco-utilidade a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

.bloco-utilidade a:hover {
    color: #2bb673;
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>a {
    padding-bottom: 10px;
    display: inline-block;
}



.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 190px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}



.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: #f3f4f8;
    color: #2bb673;
}



.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.pagina-utilidades {
    padding: 140px 20px 80px;
    background: #f8f9fb;
    min-height: 100vh;
}

.container-utilidades {
    max-width: 900px;
    margin: auto;
}

.pagina-utilidades h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
    color: #5e2b97;
}



.lista-utilidades {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0;
}

.lista-utilidades li {
    margin: 0;
}

.lista-utilidades a {
    display: block;
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}


.lista-utilidades a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #5e2b97, #2bb673);
    transition: 0.3s;
}

.lista-utilidades a:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    color: #5e2b97;
}

.lista-utilidades a:hover::before {
    width: 100%;
    opacity: 0.05;
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6fa;
}



.page-header {
    background: linear-gradient(135deg, #5e2ca5, #7c3aed);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 600;
}



.container-links {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    gap: 20px;
}



.card-link {
    background: white;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}



.card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    color: #7c3aed;
}




@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




.hero-left h1,
.hero-left p,
.hero-dados,
.hero-left .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: subirSuave 0.9s ease forwards;
}

.hero-left h1 {
    animation-delay: 0.2s;
}

.hero-left p {
    animation-delay: 0.5s;
}

.hero-dados {
    animation-delay: 0.8s;
}

.hero-left .btn {
    animation-delay: 1.1s;
}

@keyframes subirSuave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.msg-sucesso {
    margin-top: 15px;
    color: #00c853;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.msg-sucesso.show {
    opacity: 1;
}

.avaliacoes {
    padding: 120px 5%;
    background: linear-gradient(to bottom, #ffffff, #F4F1FF);
    text-align: center;
}

.avaliacoes h2 {
    font-size: 38px;
    margin-bottom: 70px;
    color: #000000;
    font-weight: 700;
}


.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}


.carousel {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}


.avaliacao {
    min-width: 33.33%;
    padding: 25px;
    box-sizing: border-box;
}

.avaliacao p {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 4px solid #447522;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    transition: 0.3s;
}

.avaliacao p:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(124, 92, 255, 0.25);
}

.avaliacao h4 {
    margin-top: 20px;
    color: #000000;
    font-weight: 600;
    font-size: 17px;
}


button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #274711;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(124, 92, 255, 0.4);
    transition: 0.3s;
    z-index: 10;
}

button.prev:hover,
button.next:hover {
    background: #6A4BE8;
    transform: translateY(-50%) scale(1.1);
}

button.prev {
    left: 15px;
}

button.next {
    right: 15px;
}

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.menu-toggle span{
width:25px;
height:3px;
background:#333;
display:block;
}

.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.whatsapp-float img:hover{
    transform: scale(1.08);
}