body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    color: #c49a6c; /* Tom elegante de dourado/bronze */
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c49a6c;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #c49a6c;
    transition: all 0.3s ease;
}

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('banner.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 200px 0 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

#hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}

#hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

#hero .hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.cta-button {
    display: inline-block;
    background-color: #c49a6c;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a8845d;
}

#servicos, #sobre, #contato {
    padding: 80px 20px;
    text-align: center;
}

#servicos h2, #sobre h2, #contato h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
    color: #c49a6c;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 60px; /* Added space for button */
}

.servico img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.servico i {
    font-size: 40px;
    color: #c49a6c;
    margin-bottom: 20px;
}

.servico h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.servico p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px; /* Add margin bottom for spacing */
}

.servico .servico-descricao {
    text-align: left; /* Align list text to the left */
    font-size: 15px;  /* Adjust font size for description */
    color: #666;
    margin-bottom: 15px;
}

.servico .servico-descricao p {
    margin-bottom: 10px; /* Space between main paragraph and list */
}

.servico .servico-descricao ul {
    padding-left: 20px; /* Indent list items */
    margin: 0;
    list-style-type: disc; /* Use standard bullet points */
}

.servico .servico-descricao li {
    margin-bottom: 5px; /* Space between list items */
}

.service-details-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c49a6c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-details-btn:hover {
    background-color: #a8845d;
}

#sobre .sobre-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

#sobre .sobre-content img {
    width: 400px;
    margin-right: 40px;
    border-radius: 10px;
}

#sobre .sobre-content p {
    font-size: 18px;
    color: #555;
}

#contato .contato-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

#contato .contato-info {
    text-align: left;
}

#contato .contato-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

#contato .contato-info i {
    color: #c49a6c;
    margin-right: 10px;
}

#contato form {
    width: 400px;
}

#contato form input,
#contato form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#contato form button {
    background-color: #c49a6c;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contato form button:hover {
    background-color: #a8845d;
}

.google-reviews {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.google-reviews h3 {
    color: #c49a6c;
    margin-bottom: 20px;
}

.review-link {
    display: inline-block;
    margin-top: 15px;
    color: #c49a6c;
    text-decoration: none;
    font-weight: 500;
}

.review-link:hover {
    text-decoration: underline;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c49a6c;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.review-button:hover {
    background-color: #a8845d;
}

.address {
    margin-bottom: 25px;
    line-height: 1.8;
}

.map-links {
    margin-top: 10px;
}

.map-links a {
    display: inline-block;
    margin-right: 15px;
    color: #c49a6c;
    text-decoration: none;
    font-size: 0.9em;
}

.map-links a:hover {
    text-decoration: underline;
}

.map-links i {
    margin-right: 5px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin: 15px 0;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content .slogan {
    font-size: 24px;
    font-family: 'Lora', serif;
    margin-bottom: 10px;
    color: #c49a6c;
}

.footer-content .expertise {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.footer-content .copyright {
    font-size: 14px;
    color: #888;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 154, 108, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background: rgba(196, 154, 108, 0.9);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin: 15px 0;
    transition: opacity 0.3s ease;
}

.instagram-button:hover {
    opacity: 0.9;
}

/* Responsive Design Updates */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        display: none;
    }

    #hero {
        padding: 150px 0 40px;
        min-height: 400px;
    }

    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 18px;
        padding: 0 20px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .servico {
        margin-bottom: 20px;
    }

    #sobre .sobre-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    #sobre .sobre-content img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    #contato .contato-content {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    #contato .contato-info {
        text-align: center;
        margin-bottom: 30px;
    }

    #contato form {
        width: 100%;
        max-width: 400px;
    }

    .google-reviews iframe {
        height: 250px;
    }

    .map-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .map-links a {
        margin-right: 0;
    }

    .logo img {
        height: 50px;
    }

    .carousel-image {
        height: 300px;
    }
    
    .carousel-button {
        padding: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    #hero h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    #servicos h2, #sobre h2, #contato h2 {
        font-size: 28px;
    }

    .servico h3 {
        font-size: 20px;
    }

    .footer-content .slogan {
        font-size: 20px;
    }

    .footer-content .expertise {
        font-size: 16px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse-effect {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #ff6347; /* cor de destaque */
    animation: pulse 1.5s infinite;
}

