        /* Reset e estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f6f2;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        /* Cabeçalho e navegação */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            height: 13%;
            top: 0;
            z-index: 1;
        }

        header div{
            justify-content: center;
            align-items: center;
        }
        
        header div h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #4d80a2;
            margin: 0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav ul li a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: #4d80a2;
        }
        
        nav ul li:first-child a {
            background-color: #4d80a2;
            color: white;
        }
        
        nav ul li:first-child a:hover {
            background-color: #4d80a2;
        }
        
        #select-bar {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: auto;
            margin-bottom: 1rem;
        }
        
        /* Conteúdo principal */
        main {
            margin-top: 80px;
        }
        
        #inicio {
            width: auto;
            height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/fachada_2.jpg') no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 5%;
        }
        
        #inicio h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        #inicio p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 2rem;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            background-color: #4d80a2;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .btn:hover {
            background-color: #4d80a2;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Seções de conteúdo */
        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
            position: relative;
            padding-bottom: 1rem;
            font-weight: bold;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #4d80a2;
        }
        
        section {
            padding: 5rem 5%;
        }
        
        .about {
            background-color: #fff;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 5%;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        /*Galeria de fotos*/

        #galeria{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        #galeria h2, h3{
            grid-column: 1/-1;
        }

        .link-insta{
            text-align: center;
            padding-top: 3rem;
        }

        .link-insta a{
            color: #6eb7ee;
            transition: 0.2s;
        }

        .link-insta a:hover{
            color: #2c6896;
            transition: 0.2s;
        }

        article{
            text-align: center;
            margin-bottom: 1rem;
        }

        article img{
            width: 20rem;
            height: inherit;
            border-radius: 1rem;
            transition: 0.5s;
        }

        article img:hover{
            width: 21rem;
            height: inherit;
            box-shadow: 10px 5px 5px 0 rgba(0, 0, 0, 0.134);
            transition: 0.5s;
        }

        /* Diferenciais */

        .features {
            background-color: #d6edff;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #4d80a2;
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #2c3e50;
        }
        
        /* Serviços */
        .services {
            background-color: #fff;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: #d6edff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #4d80a2;
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: #2c3e50;
        }
        
        /* Entretenimento */
        .entertainment {
            background-color: #d6edff;
        }
        
        .entertainment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .entertainment-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .entertainment-item i {
            font-size: 2rem;
            color: #4d80a2;
            margin-bottom: 1rem;
        }
        
        /* Depoimentos */
        .testimonials {
            background-color: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            background-color: #4d80a2;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        /* Contato */
        iframe{
            border-radius: 1rem;
        }

        .endereco{
            margin-bottom: 3rem;
        }

        .contact {
            background-color: #eaf2f8;
        }
        
        .contact-content {
            display: flex;
            gap: 5%;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            font-size: 1.5rem;
            color: #4d80a2;
            margin-right: 1rem;
            min-width: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Rodapé */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #4d80a2;
        }
        
        .footer-links ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        .footer-links a:hover {
            color: #4d80a2;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #4d80a2;
            transform: translateY(-3px);
        }
/*         
        .copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        } */