body {
    background-color: #F2F0EF;
}

button {
    background-color: rgb(242, 183, 30);
    border-radius: 6px;
    color: rgb(63, 48, 8);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: rgb(132, 97, 15) 1px solid;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    background-color: rgb(230, 170, 30);
}

button a {
    text-decoration: none;
    color: rgb(63, 48, 8);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 44px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn img {
    height: 72px;
    position: relative;
    z-index: 2;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Cria a onda */
.whatsapp-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.4); /* verde WhatsApp com transparência */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1;
    animation: pulse 1.5s infinite;
}

/* Animação da onda */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

.cta-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}


/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #F2F0EF;
    color: #000;
    text-align: space-between;
    padding: 0px 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

header .logo {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 65px;
}

header .logo a,
#header-logo {
    max-height: 100%;
}

a:hover {
    text-decoration: underline;
}

.map {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 1rem;
    list-style-type: none;
    padding-left: 0;
    align-items: center;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.menu .link-button {
    display: inline-block;
    background-color: rgb(242, 183, 30);
    border-radius: 6px;
    color: rgb(63, 48, 8);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu .link-button:hover {
    transform: scale(1.1);
    background-color: rgb(230, 170, 30);
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu a:hover::after {
    transform: scaleX(1);
}

.menu .link-button::after {
    background-color: transparent;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001; 
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background-color: black;
}

.close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

section {
    scroll-margin-top: 65px;
}

h1, h2, h3 {
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 0;
}

h1 {
    font-size: 64px;
    font-weight: 800;
}

h2 {
    font-size: 48px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    font-weight: 600;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: grey;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0;
}

b {
    font-weight: 800;
    color: rgb(242,183,30);
}

/* Home */

#home {
    margin-top: 96px;
}

section .ct1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ct1 .title {
    text-align: center;
}

.logo-home {
    max-width: 100%;
    height: 120px;
}

.home-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-top: 24px;
}

.slider {
    display: flex;
    border-radius: 6px;
    margin-top: 20px;
}

.slider-content {
    display: flex;
    padding: 24px;
    gap: 20px;
}

.slider-content img {
    width: 100%;
    height: 350px;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slider-content img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.slick-next:before,
.slick-prev:before,
.slick-next:hover,
.slick-prev:hover {
    display: none;
}

.slick-next {
    right: -17px;
}

.slick-dots li button::before {
    font-size: 12px;
    line-height: 44px;
    transition: transform 0.3s;
}

.slick-dots li button:hover {
    transform: scale(1.2);
}

.slideshow img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

#slide-preview {
    transition: opacity 0.5s ease-in-out;
}

.slides-map a {
    text-decoration: none;
    color: #F2F0EF;
    font-size: 18px;
}

.slides-map ul li:hover,
.slides-map ul li.ativo {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px;
}

.slides-map ul {
    list-style-type: none;
    gap: 24px;
}

.slides-map ul li {
    padding-left: 8px;
}

.slides-map ul li::marker {
    content: "✔";
    font-size: 24px;
  }

.slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    padding: 56px;
    border-radius: 8px;
    background-image: url('../images/fundo-lousa.png');
    background-size: cover;       /* cobre toda a área */
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slideshow h3 {
    color: #F2F0EF;
}

.ct2-title,
.slideshow-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.ct2 {
    margin-top: 64px;
}

/* sobre-nos */

#sobre-nos {
    margin-top: 64px;
    background-color: #000;
}

.ct-sobre-nos {
    border-radius: 6px;
    padding: 24px;
}

.text-sobre-nos {
    margin-top: 32px;
}

#sobre-nos p {
    color: #fff;
    font-size: 18px;
}
.img-area-sobre-nos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-sobre-nos {
    max-width: 100%;
    height: 300px;
    border-radius: 6px;
}

.orcamento-row {
    display: flex;
    align-content: center;
    justify-content: center;
}

.text-orcamento {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 24px;
}

.form-area {
    display: flex;
    justify-content: center;
    max-width: 500px;
    border-radius: 6px;
    border: 1px solid #adadad;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-orcamento {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-radius: 6px;
    width: 500px;
    margin-bottom: 1rem;
}

.form-orcamento label {
    font-size: 16px;
    font-weight: 600;
    padding-left: 32px;
    color: #000;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 0;
} 

.form-orcamento input[type="text"],
.form-orcamento input[type="email"],
.form-orcamento input[type="phone"],
.form-orcamento textarea {
    width: 100%;
    min-height: 40px;
    border-radius: 6px;
    border: 1px solid #adadad;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Source Sans 3', sans-serif;
}

.form-orcamento label[for="nome"] {
    background-image: url('../images/icons/perfil.png');
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
}
  
.form-orcamento label[for="input-email"] {
    background-image: url('../images/icons/o-email.png');
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
}
  
.form-orcamento label[for="input-phone"] {
    background-image: url('../images/icons/telefone-velho.png');
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
}
  
.form-orcamento label[for="input-message"] {
    background-image: url('../images/icons/lapis.png');
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
}
  

.consent-checkbox {
    display: flex;
    flex-wrap: nowrap;
}

.consent-checkbox label {
    font-size: 12px;
    font-weight: 200;
    font-family: 'Source Sans 3', sans-serif;
    color: rgb(108, 108, 108);
}

.consent-checkbox input {
    margin-top: 2px;
}

#form-btn {
    background-color: rgb(242,183,30);
    border-radius: 6px;
    border : 1px solid rgb(132, 97, 15);
    color: rgb(63, 48, 8);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
  
}

#form-btn:hover {
    transform: scale(1.05);
    background-color: rgb(230, 170, 30);
}

#input-message {
    resize: none;
}
  
.swal2-confirm {
    background-color: rgb(242,183,30);
    border-radius: 6px;
    color: rgb(63, 48, 8);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.swal2-confirm:hover {
    transform: scale(1.1);
    background-color: rgb(230, 170, 30);
}

.swal2-title, .swal2-html-container {
    font-family: 'Red Hat Display', sans-serif;
}

.contatos-row {
    display: flex;
    justify-content: space-around;
}

.cta-wpp {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid #18813e;
    border-radius: 6px;
    padding: 24px;
    gap: 12px;
}

#whatsapp-logo {
    max-width: 100%;
    height: 100%;
}

.whatsapp-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
}

.btn-wpp {
    background-color: #25D366;
    border-radius: 6px;
    color: #fff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border: 1px solid #18813e;
    transition: transform 0.3s ease, background-color 0.3s ease;
  
}

.btn-wpp:hover {
    transform: scale(1.1);
    background-color: #18813e;
}

/* footer */

footer {
    background-color: #000;
    color: #F2F0EF;
    margin-top: 64px;
}

.img-footer {
    padding-top: 1rem;
    display: flex;
    justify-content: end;
    align-items: center;
}

.logo-footer {
    height: 50px;
}

footer .menu {
    padding-top: 1rem;
}

footer .menu ul {
    align-items: center;
}

footer .menu ul li a{
    color: #F2F0EF;
}

footer .menu ul li a::after {
    background-color: #F2F0EF;
}

footer p,
footer a p{
    font-size: 14px;
    margin-bottom: 2px;
}

footer a {
    text-decoration: none;
    color: #F2F0EF;
    font-weight: 400;
    font-family: 'Source Sans 3', sans-serif;
}

footer .email {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer .social-media {
    display: flex;
    flex-direction: row;
    margin: 0;
    min-width: 100%;
    background-color: #a0a0a0; 
    color: white;
    align-items: center;
    justify-content: end;
    position: relative; 
}

.social-media .row {
    width: 100%;
}

.social-media-text {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 12px;
}

.social-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(242,183,30);
}

.social-icons a {
    text-decoration: none; 
    transition: transform 0.3s ease; 
}

.social-icons img {
    height: 32px; 
}

.social-icons img:hover {
    transform: scale(1.1); 
}