/* ============================================
   SEÇÃO SOBRE (ABOUT)
   ============================================ */

.about {
    width: 100%;
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(107, 68, 35, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b4423;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #a8a8a8;
}

.about-signature {
    margin-top: 1rem;
}

.about-signature p {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #6b4423;
    margin-bottom: 0.5rem;
}

.signature-line {
    display: block;
    width: 80px;
    height: 2px;
    background: #c97a8a;
}

/* ============================================
   SEÇÃO GALERIA (GALLERY)
   ============================================ */

.gallery {
    width: 100%;
    background: #F7E7E9;
    padding: 6rem 2rem;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.title-line {
    flex: 1;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent, #c97a8a, transparent);
}

.gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b4423;
    text-align: center;
    letter-spacing: 0.2em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(107, 68, 35, 0.25);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #d4a5a5;
}

.gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 3;
}

.gallery-item:nth-child(3) {
    grid-column: span 3;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c97a8a, #d4a5a5);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 143, 151, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(200, 143, 151, 0.35), 0 0 30px rgba(201, 122, 138, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(0.75) saturate(1.2);
}

/* ============================================
   SEÇÃO DEPOIMENTOS (TESTIMONIALS)
   ============================================ */

.testimonials {
    width: 100%;
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b4423;
    text-align: center;
    letter-spacing: 0.2em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(107, 68, 35, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 4px solid #c97a8a;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 122, 138, 0.25);
}

.stars {
    display: flex;
    gap: 0.5rem;
    color: #c97a8a;
    font-size: 1rem;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #8b5a3c;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b4423;
}

/* ============================================
   SEÇÃO CTA (AGENDAMENTO)
   ============================================ */

.cta {
    width: 100%;
    background: linear-gradient(135deg, #d4a5a5 0%, #d4a5a5 100%);
    padding: 6rem 2rem;
    position: relative;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.7;
}

.btn-cta {
    background: #ffffff;
    color: #c97a8a;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:active {
    transform: translateY(-1px);
}

/* ============================================
   SEÇÃO INFORMAÇÕES E AGENDAMENTO
   ============================================ */

.info-schedule {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #F7E7E9 100%);
    padding: 6rem 2rem;
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-schedule .section-title-wrapper {
    margin-bottom: 4rem;
}

.info-schedule .section-title-wrapper h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b4423;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* COLUNA ESQUERDA: Formulário + Contato */
.info-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

/* COLUNA DIREITA: Mapa + Horário */
.info-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

/* Formulário */
.schedule-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.schedule-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #6b4423;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 0.9rem 1rem;
    border: 2px solid #D8A5AD;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b4423;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #C88F97;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(200, 143, 151, 0.2);
}

.form-group input::placeholder {
    color: #a8a8a8;
}

.form-group select {
    padding: 0.9rem 1rem;
    border: 2px solid #D8A5AD;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b4423;
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b4423' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group select:focus {
    outline: none;
    border-color: #C88F97;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(200, 143, 151, 0.2);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C88F97' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5em 1.5em;
}

.btn-submit {
    background: #C88F97;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #D8A5AD;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 143, 151, 0.3);
}

/* Informações */
.info-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-right-column .info-section:last-child {
    flex-grow: 1;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(200, 143, 151, 0.2);
}

.info-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #C88F97;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-section h4 i {
    font-size: 1.3rem;
}

.mini-map {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.mini-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.info-section p,
.info-section li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #6b4423;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #EBC7CC;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    font-weight: 600;
    color: #C88F97;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    width: 100%;
    background: linear-gradient(135deg, #D8A5AD 0%, #C88F97 50%, #EBC7CC 100%);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid #C88F97;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(107, 68, 35, 0.1);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 1px 2px rgba(107, 68, 35, 0.1);
}

.footer-list li i {
    color: #ffffff;
    width: 18px;
    opacity: 0.9;
}

.footer-list a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-list a:hover {
    color: #F7E7E9;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.footer-bottom {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    text-shadow: 0 1px 2px rgba(107, 68, 35, 0.1);
}

/* ============================================
   SEÇÃO SERVIÇOS - CORREÇÃO
   ============================================ */

.services {
    width: 100%;
    background: #F7E7E9;
    padding: 6rem 2rem;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b4423;
    text-align: center;
    letter-spacing: 0.2em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image-wrapper {
    width: 100%;
    max-width: 220px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.15);
    transition: box-shadow 0.3s ease;
}

.service-card:hover .service-image-wrapper {
    box-shadow: 0 12px 35px rgba(201, 122, 138, 0.25);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b4423;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #a8a8a8;
    line-height: 1.6;
}

.services-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-see-all {
    background: #d4a5a5;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-see-all:hover {
    background: #c97a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 122, 138, 0.3);
}

.btn-see-all:active {
    transform: translateY(-1px);
}

/* ============================================
   RESPONSIVIDADE - TODAS AS SEÇÕES
   ============================================ */

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 350px;
    }

    .about-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        grid-auto-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-title-wrapper {
        gap: 1.5rem;
    }

    .title-line {
        max-width: 120px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-image-wrapper {
        max-width: 180px;
        height: 240px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.3rem;
        grid-auto-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .testimonials-title {
        font-size: 1.6rem;
    }

    .gallery-title {
        font-size: 1.6rem;
    }

    /* Responsividade Info Schedule 992px */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .schedule-form-wrapper,
    .info-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 2rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .gallery {
        padding: 3rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 140px;
        gap: 1.2rem;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-title {
        font-size: 1.3rem;
    }

    .gallery-title {
        font-size: 1.4rem;
    }

    .testimonials {
        padding: 4rem 2rem;
    }

    .testimonials-title {
        font-size: 1.4rem;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin-top: 4rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }

    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(200, 143, 151, 0.1);
        border-radius: 10px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #c97a8a;
        border-radius: 10px;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 3rem);
        scroll-snap-align: start;
        margin-right: 0.5rem;
    }

    .cta {
        padding: 4rem 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 1rem 2.5rem;
    }

    .services {
        padding: 4rem 2rem;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin-bottom: 2rem;
        margin-top: 3rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .services-grid::-webkit-scrollbar {
        height: 6px;
    }

    .services-grid::-webkit-scrollbar-track {
        background: rgba(200, 143, 151, 0.1);
        border-radius: 10px;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background: #c97a8a;
        border-radius: 10px;
    }

    .service-card {
        flex: 0 0 calc(100vw - 4rem);
        scroll-snap-align: start;
        min-width: calc(100vw - 4rem);
    }

    .service-image-wrapper {
        max-width: 200px;
        height: 260px;
    }

    .services-title {
        font-size: 1.4rem;
    }

    .section-title-wrapper {
        gap: 1.2rem;
    }

    .title-line {
        max-width: 80px;
    }

    .footer {
        padding: 2.5rem 2rem;
    }

    /* Responsividade Info Schedule 768px */
    .info-schedule {
        padding: 4rem 2rem;
    }

    .info-schedule .section-title-wrapper h2 {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .schedule-form-wrapper h3,
    .info-section h4 {
        font-size: 1.3rem;
    }

    .form-group input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .mini-map {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .about-container {
        gap: 1.5rem;
    }

    .about-image {
        height: 250px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-signature p {
        font-size: 1.5rem;
    }

    .gallery {
        padding: 3rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 140px;
        gap: 1rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-title {
        font-size: 1.25rem;
    }

    .section-title-wrapper {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .title-line {
        max-width: 60px;
    }

    .gallery-title {
        font-size: 1.3rem;
    }

    .testimonials-title {
        font-size: 1.3rem;
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.2rem;
        margin-top: 4rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .testimonials-grid::-webkit-scrollbar {
        height: 5px;
    }

    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(200, 143, 151, 0.1);
        border-radius: 10px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #c97a8a;
        border-radius: 10px;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 3rem);
        scroll-snap-align: start;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .cta {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    .btn-cta {
        width: auto;
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .services {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }

    .service-card {
        flex: 0 0 auto;
    }

    .service-image-wrapper {
        max-width: 140px;
        height: 200px;
        margin-bottom: 1rem;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    .services-title {
        font-size: 1.1rem;
    }

    .btn-see-all {
        width: 80%;
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }

    .section-title-wrapper {
        gap: 1rem;
    }

    .title-line {
        max-width: 50px;
    }

    .footer-list li {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 1.4rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .info-schedule {
        padding: 3rem 1.5rem;
    }

    .info-container {
        max-width: 100%;
    }

    .info-grid {
        gap: 1.5rem;
        align-items: stretch;
    }

    .schedule-form-wrapper,
    .info-section {
        padding: 1.5rem;
    }

    .schedule-form-wrapper h3,
    .info-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
    }

    .mini-map {
        height: 180px;
        margin-bottom: 1rem;
    }

    .info-section p,
    .info-section li {
        font-size: 0.9rem;
    }

    .hours-list li {
        padding: 0.4rem 0;
    }
}
