:root {
     --primary: #8B4513;
     /* Marrom madeira */
     --secondary: #D4AF37;
     /* Dourado */
     --dark: #2C2C2C;
     --light: #F5F5F5;
     --gray: #777;
     --white: #FFFFFF;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.6;
     color: var(--dark);
     background-color: var(--light);
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 h1 {
     font-size: 2.5rem;
     line-height: 1.2;
 }

 h2 {
     font-size: 2rem;
     text-align: center;
     margin-bottom: 2rem;
     position: relative;
 }

 h2:after {
     content: '';
     display: block;
     width: 80px;
     height: 3px;
     background: var(--secondary);
     margin: 10px auto;
 }

 p {
     margin-bottom: 1rem;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-block;
     background: var(--secondary);
     color: var(--dark);
     padding: 12px 30px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     text-decoration: none;
     font-size: 1rem;
     font-weight: 600;
     transition: var(--transition);
     text-align: center;
 }

 .btn:hover {
     background: #c19d2e;
     transform: translateY(-2px);
     box-shadow: var(--shadow);
 }

 .btn-secondary {
     background: transparent;
     border: 2px solid var(--secondary);
     color: var(--secondary);
 }

 .btn-secondary:hover {
     background: var(--secondary);
     color: var(--dark);
 }

 /* Header */
 header {
     background: var(--dark);
     color: var(--white);
     padding: 1rem 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: var(--shadow);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--secondary);
 }

 .logo span {
     color: var(--white);
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 2rem;
 }

 nav ul li a {
     color: var(--white);
     text-decoration: none;
     font-weight: 500;
     transition: var(--transition);
 }

 nav ul li a:hover {
     color: var(--secondary);
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     color: var(--white);
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1174&q=80') no-repeat center center/cover;
     color: var(--white);
     height: 100vh;
     display: flex;
     align-items: center;
     text-align: center;
     padding-top: 80px;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .benefits {
     display: flex;
     justify-content: center;
     margin-top: 2rem;
     flex-wrap: wrap;
 }

 .benefit {
     margin: 0 1rem;
     display: flex;
     align-items: center;
 }

 .benefit i {
     color: var(--secondary);
     margin-right: 10px;
     font-size: 1.2rem;
 }

 /* Services Section */
 .services {
     padding: 5rem 0;
     background: var(--white);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background: var(--light);
     border-radius: 8px;
     padding: 2rem;
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .service-card:hover {
     transform: translateY(-5px);
 }

 .service-icon {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .service-card h3 {
     color: var(--primary);
 }

 .price {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--secondary);
     margin: 1rem 0;
 }

 /* Gallery Section */
 .gallery {
     padding: 5rem 0;
     background: var(--light);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 1rem;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 8px;
     height: 250px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 /* Testimonials Section */
 .testimonials {
     padding: 5rem 0;
     background: var(--white);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .testimonial-card {
     background: var(--light);
     border-radius: 8px;
     padding: 2rem;
     box-shadow: var(--shadow);
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 1.5rem;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     overflow: hidden;
     margin-right: 1rem;
 }

 .author-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .author-info h4 {
     margin-bottom: 0.2rem;
 }

 .author-info p {
     margin-bottom: 0;
     color: var(--gray);
     font-size: 0.9rem;
 }

 /* About Section */
 .about {
     padding: 5rem 0;
     background: var(--light);
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 .about-text {
     padding-right: 2rem;
 }

 .about-image {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .about-image img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Contact Section */
 .contact {
     padding: 5rem 0;
     background: var(--white);
 }

 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
 }

 .contact-icon {
     font-size: 1.5rem;
     color: var(--primary);
     margin-right: 1rem;
     margin-top: 5px;
 }

 .map {
     border-radius: 8px;
     overflow: hidden;
     height: 300px;
 }

 .map iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 /* Booking Modal */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 2000;
     justify-content: center;
     align-items: center;
 }

 .modal-content {
     background: var(--white);
     width: 90%;
     max-width: 500px;
     border-radius: 8px;
     padding: 2rem;
     position: relative;
     animation: modalFade 0.3s;
 }

 @keyframes modalFade {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .close-modal {
     position: absolute;
     top: 15px;
     right: 15px;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--gray);
 }

 .booking-form h3 {
     text-align: center;
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-group input,
 .form-group select {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-family: 'Roboto', sans-serif;
 }

 .form-submit {
     text-align: center;
     margin-top: 1.5rem;
 }

 /* Footer */
 footer {
     background: var(--dark);
     color: var(--white);
     padding: 3rem 0 1rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     color: var(--secondary);
     margin-bottom: 1.5rem;
 }

 .footer-section p {
     margin-bottom: 1rem;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--secondary);
     color: var(--dark);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Responsive Styles */
 @media (max-width: 992px) {

     .about-content,
     .contact-content {
         grid-template-columns: 1fr;
     }

     .about-text {
         padding-right: 0;
     }
 }

 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     nav {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: var(--dark);
         display: none;
     }

     nav.active {
         display: block;
     }

     nav ul {
         flex-direction: column;
         padding: 1rem 0;
     }

     nav ul li {
         margin: 0;
         text-align: center;
         padding: 0.5rem 0;
     }

     h1 {
         font-size: 2rem;
     }

     .hero h1 {
         font-size: 2.2rem;
     }

     .benefits {
         flex-direction: column;
         align-items: center;
     }

     .benefit {
         margin: 0.5rem 0;
     }
 }