/* CSS */
.color-1 {
  color: #5f683b;
}
.color-2 {
  color: #7c8b50;
}
.color-3 {
  color: #a0b76c;
}
.color-4 {
  color: #d1d95e;
}
.color-5 {
  color: #f4df43;
}

/* CSS Variables */
:root {
  --color-1: #5f683b;
  --color-2: #7c8b50;
  --color-3: #a0b76c;
  --color-4: #d1d95e;
  --color-5: #f4df43;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
     font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
    position: sticky;
    top: 0;
    background: var(--color-1);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    align-items: center;
    font-size: 14px;
}
.top-bar .info {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.info a {
    color: #fff;
}
.top-bar i {
    margin-right: 5px;
    color: var(--color-2);
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    padding: 15px 50px;
    background: #7c8b50d9;
    z-index: 10;
    backdrop-filter: blur(8px);
}
.navbar .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.navbar .logo {
  width: 200px;
}
.navbar .logo img {
    max-width: 150px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.nav-links a.active {
    color: var(--color-4);
}
.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.btn-appointment {
    background: #d69a3a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-appointment:hover {
    background: #b37e2d;
}

/* Hero Section */
.hero {
    height: 60vh;
    color: #fff;
    background: #333;
}

.hero .container {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    min-height: 68svh;
}

.hero-content {
    flex: 1;
    width: 500px;
    height: 60%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding:20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #d69a3a;
    color: #fff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .menu-toggle i {
        font-size: 24px;
    }
    .hero {
        height: 78vh;
    }
    .hero .container {
     grid-template-columns: 1fr; 
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content {
        width: 100%;
        order: 1;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-image {
        max-width: 387px;
    }
}

/* Serviços */
.services {
    padding: 100px;
    background: #fff;
    text-align: center;
}
.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    place-items: center;
}

.service-item {
    background: var(--color-3);
    padding: 20px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 30px hsl(72.94deg 23.29% 42.94%);
    max-width: 180px;
    height: 180px;
}


.service-item i {
    font-size: 2rem;
    color: var(--color-4);
    margin-bottom: 10px;
}
.service-item h3 {
    font-size: 1.2rem;
    color: #fff;
}

@media (max-width:800px) {
    .services-grid {
        gap: 100px;
    }
}

/* Sobre a Adonay */
.about {
    padding: 50px;
    position: relative;
    background: url(https://pixydrops.com/wallox-html/assets/images/shapes/contact-shape-1-1.png);
    background-size: cover;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #7c8b50e0;
    top: 0;
    left: 0;
    right: 0;
}

.about .container {
    display: flex;
}

.about .about-image {
    position: relative;
}
.about .about-image img {
    width: 100%;
    border-radius: 10px;
}
.about .about-content {
    flex: 1;
    padding: 20px;
    z-index: 2;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
}
.about p {
    color: #111;
    margin-bottom: 1rem;
    font-weight: 500;
}
.about > h2 > p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 20px;
    color: #fff;
}
.about .about-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-top: 1px solid var(--color-1);
    border-bottom: 1px solid var(--color-1);
}
.about .about-details h3 {
    margin-bottom: .5rem;
}
.about .about-details div {
    flex: 1;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.about .about-buttons {
    display: flex;
    gap: 15px;
}
.btn-primary {
    background: var(--color-1);
    text-decoration: none;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: var(--color-3);
}

@media (max-width:800px) {
    .about .container {
        flex-wrap: wrap;
    }
}
/* Galeria */
.gallery {
    padding: 50px;
    background: #f8f5f0;
    text-align: center;
}
.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0 50px;
    width: 90%;
    margin: 0 auto;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3sease;
}
.gallery-item img:hover {
    transform: scale(1.1);
}

@media (max-width:800px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* Estilo da seção de contato */
.contact-section {
    background: url(https://pixydrops.com/wallox-html/assets/images/shapes/contact-shape-1-1.png);;
    padding: 60px 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #5f683be6;
    width: 100%;
    height: 100%;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 90%;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.contact-form {
    flex: 2;
    padding: 40px;
}

.contact-form h3 {
    color: var(--color-4);
    font-size: 14px;
    text-transform: uppercase;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #e8e6e4;
    background: #f5f3f1;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.btn-submit {
    background: var(--color-2);
    color: #fff;
    border: none;
    padding: 20px 20px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info hr {
    border: none;
    border-top: 2px solid var(--color-4);
    width: 50px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #444;
}

.contact-info a {
    color: #444;
}

@media (max-width:800px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #3b2f2a;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #9a6b4f;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        padding: 30px;
    }
}
