/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(102, 153, 153);
    --secondary-color: rgb(235, 246, 236);
    --accent-color: rgb(137, 177, 175);
    --text-dark: #2c3e3e;
    --text-light: #ffffff;
    --shadow: rgba(102, 153, 153, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(140deg, rgba(102, 153, 153, 1) 0%, rgba(137, 177, 175, 1) 0%, rgba(168, 199, 194, 1) 3%, rgba(108, 158, 157, 1) 6%, rgba(110, 159, 158, 1) 11%, rgba(112, 160, 159, 1) 12%, rgba(163, 195, 191, 1) 13%, rgba(162, 195, 190, 1) 16%, rgba(116, 163, 162, 1) 20%, rgba(164, 197, 192, 1) 18%, rgba(150, 187, 183, 1) 24%, rgba(126, 169, 168, 1) 24%, rgba(147, 184, 181, 1) 35%, rgba(159, 192, 188, 1) 39%, rgba(167, 198, 193, 1) 43%, rgba(166, 198, 193, 1) 47%, rgba(160, 194, 189, 1) 47%, rgba(177, 205, 200, 1) 47%, rgba(168, 199, 194, 1) 50%, rgba(191, 215, 208, 1) 62%, rgba(235, 246, 236, 1) 63%, rgba(218, 234, 225, 1) 66%, rgba(180, 207, 202, 1) 71%, rgba(177, 205, 200, 1) 74%, rgba(142, 181, 178, 1) 77%, rgba(160, 193, 189, 1) 79%, rgba(129, 172, 170, 1) 86%, rgba(102, 153, 153, 1) 100%);
    min-height: 100vh;
    background-attachment: fixed;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: inline-block;
    height: 150px;
    width: 280px;
    box-shadow: 5px 5px 24px 5px rgba(0, 0, 0, 0.61);
    border: 3px solid #67999A;
    padding: 25px;
    border-radius: 40px 0px 40px 0px;
}



/* Header Styles */
.site-header {
    background: rgba(235, 246, 236, 0.5);
    backdrop-filter: blur(6px);
    border-bottom: 20px solid #ebf6ec;
    color: white;
    text-align: center;
    padding: 20px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px var(--shadow);
    position: fixed;
    /* navbar fixa no topo */
    top: 0;
    left: 0;
    width: 100%;
    /* ocupa toda a largura */
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(102, 153, 153, 0.8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}


/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: rgba(235, 246, 236, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 30px 20px;
    margin-top: 250px;
    /* ajuste conforme a altura da navbar */
    box-shadow: 0 15px 35px var(--shadow);
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.05);
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    opacity: 0.9;
}

/* From Uiverse.io by vikiWayne */
.btn {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #669999;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #669999;
}

.btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #669999;
    box-shadow: 4px 5px 17px -4px #669999;
}

.btn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #669999;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.btn:hover::before {
    width: 250%;
}


.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(235, 246, 236, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Space Section */
.space-section {
    padding: 80px 0;
    text-align: center;
}

.space-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.space-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.space-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
    transition: var(--transition);
}

.space-photo:hover {
    transform: scale(1.05);
}

.space-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.space-photo:hover .photo-overlay {
    transform: translateY(0);
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0;
    margin-top: 200px;
    /* ajuste conforme a altura da navbar */
}

.services-detail h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    opacity: 0.9;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: rgba(235, 246, 236, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px var(--shadow);
}



.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-info h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    background: rgba(102, 153, 153, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Space Gallery Section */
.space-gallery-section {
    padding: 80px 0;
    background: rgba(235, 246, 236, 0.1);
    backdrop-filter: blur(5px);
    margin-top: 60px;
}

.space-gallery-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.space-gallery-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.especialidades {
  text-align: center;
  padding: 50px 20px;
  background: #f0f7f7; /* fundo leve */
}

.especialidades h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2b4b6f;
  position: relative;
  display: inline-block;
}

.especialidades h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #8e6ca3;
  margin: 8px auto 0;
  border-radius: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.card {
  background: #ebf6ec; /* cor base */
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:nth-child(2),
.card:nth-child(3) {
  background: #669999;
  
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card h3 {
  font-size: 18px;
  color: #000000;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.card:nth-child(2) h3,
.card:nth-child(3) h3 {
  color: white;
}


/* Responsividade para celular */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr; /* só 1 card por linha */
  }
}



.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Gallery Page Styles */
.gallery-header {
    padding: 60px 0;
    text-align: center;
    margin-top: 170px;
    /* ajuste conforme a altura da navbar */
}

.gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);

}

.gallery-filter {
    padding: 30px 0;
    text-align: center;
    background: rgba(235, 246, 236, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 30px 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.gallery-grid-section {
    padding: 0px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-rows: max-content;
}

.gallery-card {
    background: rgba(235, 246, 236, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    margin-bottom: 10px;
}

.view-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 15px;
    transition: var(--transition);
}

.view-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Video Styles */
.gallery-video {
    position: relative;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 80%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-info {
    padding: 20px;
    text-align: center;
}

.video-modal {
    max-width: 80%;
    background: transparent;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Contact Page Styles */
.contact-header {
    padding: 60px 0;
    text-align: center;
    margin-top: 180px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(235, 246, 236, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.whatsapp-icon {
    color: #25D366;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: rgba(235, 246, 236, 0.1);
    backdrop-filter: blur(5px);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.schedule-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.schedule-grid {

    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px var(--shadow);
}

.schedule-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-day .day {
    font-weight: 600;
    color: var(--text-dark);
}

.schedule-day .hours {
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-day.weekend .hours {
    color: var(--accent-color);
}

.schedule-day.closed .hours {
    color: #999;
}

.schedule-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(102, 153, 153, 0.1);
    border-radius: 10px;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 10px rgba(102, 153, 153, 0.2);
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    margin-top: -80px;
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(235, 246, 236, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
    max-width: 300px;
}

.location-info h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-info p {
    color: var(--text-dark);
    margin-bottom: 20px;
    opacity: 0.9;
}

.directions-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-weight: 600;
}

.directions-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: rgba(235, 246, 236, 0.1);
    backdrop-filter: blur(5px);
}

.social-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
    text-decoration: none;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
    background: #669999;
}

.social-card i {
    font-size: 2.5rem;
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.instagram i {
    color: #e4405f;
}

.social-card.whatsapp i {
    color: #25D366;
}

.social-info h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.social-info p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: rgba(102, 153, 153, 0.9);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 90px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.horarios {
  margin-top: 10px;
}

.linha {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.dia {
  font-weight: bold;
}

.hora {
  color: #fff; /* ou a cor que quiser */
}



.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-linkshdr {
    display: flex;
    gap: 15px;
}

.social-linkshdr a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-linkshdr a:hover {
    background: #669999;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(235, 246, 236, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 25px var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .site-header {
        padding: 30px 20px;
    }

    .nav-brand h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .space-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .services-overview h2,
    .space-section h2 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 25px;
    }

    .modal-content {
        margin: 10% auto;
        max-width: 95%;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}