@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px; 
}


.navbar {
    display: flex;
    flex-flow: row wrap;
    height: 100px;
    background: white;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
}

.logo {
    flex: 20%;
    margin-left: 10%;
    text-align: left;
}

.logo h1 {

    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #113c3b;
    letter-spacing: 2px;
    margin: 0;
}

.menu {
    flex: 70%;
    text-align: right;
    padding: 20px;
}

.menu a {
    color: #113c3b;
    text-decoration: none;
    font-size: 20px;
    padding: 20px 16px;
}

.menu a:hover {
    color: #fe514a;
    border-top: 4px solid #113c3b;
}

#botao {
    background: #113c3b;
    padding: 10px 25px;
    color: white;
    border-radius:30px;
    margin-right: 10%;
    margin-left: 5%;
}

#botao:hover {
    border: none;
    background: #fe514a;
}

.header {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: 220px;
}

.headline {
  margin-left: 10%;
  flex: 40%;
  order: 1; 
}

.img-headline {
  flex: 40%;
  margin-right: 10%;
  text-align: center;
  order: 2;
}

.headline h2 {
    font-weight: 900;
    font-size: 20px;
    color: #113c3b;
    padding: 0;
    margin: 0;
}

.headline p {
    color: gray;
    text-align: left;
}

.contact-btn {
    display: inline-block;
    background: #fe514a;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #113c3b;
}


.img-headline {
    flex: 40%;
    margin-right: 10%;
    text-align: center;
}

.sobre {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 50px 10%;
    gap: 40px;
    text-align: left;
}

.img-sobre {
    flex: 40%;
    text-align: center;
}

.img-sobre img {
    max-width: 100%;
    border-radius: 10px;
}

.texto-sobre {
    flex: 50%;
}

.texto-sobre h2 {
    font-size: 40px;
    font-family: 'Lobster', sans-serif;
    font-weight: bold;
    color: #113c3b;
    margin-bottom: 20px;
}

.texto-sobre p {
    font-size: 18px;
    line-height: 1.6;
    color: gray;
}


section {
    display: inline-block;
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    padding: 5px;
}



section h2 {
    width: 100%;
    font-size: 40px;
    margin: 0;
    font-family: 'Lobster', sans-serif;
    font-weight: bold;
    color: #113c3b;
}


.servicos {
    display: inline-block;
    margin-top: 5%;
}

.card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #fe514a;
    border-radius: 10px;
    cursor: pointer;
}

.texto-oculto {
    display: none;
}

.card:hover {
    background: #fe514a;
    color: white;
    padding: 40px;
}

.card:hover img {
    display: none;
}

.card:hover .card-text {
    display: none;
}


.card:hover .texto-oculto {
    display: block;
}


footer {
    margin-top: 100px;
    padding: 60px 20px;
    background: linear-gradient(180deg, #113c3b, #0d2a29, #000);
    text-align: center;
    color: #ddd;
    position: relative;
}

.logo-rodape {
    margin-bottom: 30px;
}

.logo-rodape h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #ddd;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fe514a;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    color: #ddd;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fe514a;
}

footer p {
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}


.logo-rodape {
    padding: 100px;
}

.agencia {
    font-family: 'Lobster', sans-serif;
    color: white;
    font-size: 34px;
}

.whats {
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 100px;
}