/*
    Seu CSS completo e corrigido, incluindo os estilos da galeria.
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
    --primary-pink: #E91E63;
    --light-gray: #f2f2f2;
    --dark-gray: #4a4a4a;
    --text-primary: #212121;
    --text-secondary: #616161;
    --bg-light: #f8faff;
    --bg-white: #ffffff;
    --border-color: rgba(233, 30, 99, 0.2);
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius-main: 16px;
    --border-radius-sm: 10px;
    --gradient-hero: linear-gradient(135deg, #ede7f6 0%, #7e57c2 100%);
    --instagram-gradient: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
    --whatsapp-green: #25d366;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: #b39ddb;
    transform: translateY(-1px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(20px, 4vw);
}

/* Utility classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.grid { display: grid; }
.flex { display: flex; align-items: center; justify-content: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--border-radius-main);
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--shadow-subtle);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease-in-out;
    transform: skewX(-20deg);
}
.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-pink);
    color: var(--bg-white);
}
.btn-primary:hover {
    background: #d41854;
    box-shadow: var(--shadow-elevated);
    transform: translateY(-3px);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--bg-white);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-3px);
}
.btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-instagram {
    background: var(--instagram-gradient);
    color: var(--bg-white);
    border-radius: var(--border-radius-main);
}
.btn-instagram:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-3px);
    opacity: 0.95;
}

.btn-whatsapp-agenda {
    background: var(--whatsapp-green);
    color: var(--bg-white);
    padding: 16px 35px;
    font-size: 1.1em;
    border-radius: var(--border-radius-main);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-agenda:hover {
    background: #1da851;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-4px);
}
.btn-whatsapp-agenda:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn i {
    margin-right: 10px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}
.btn:hover i {
    transform: translateX(-3px);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-subtle);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2em;
    color: var(--dark-gray);
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-brand:hover {
    color: var(--primary-pink);
    transform: scale(1.02);
}

.navbar-brand .highlight-L {
    color: var(--primary-pink);
    font-family: 'Dancing Script', cursive;
    font-size: 1.15em;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-item a {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05em;
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}
.nav-item a.active {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    width: 35px;
    height: 30px;
    justify-content: space-between;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Language Switcher */
.language-switcher {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilos para os links de idioma */
.language-switcher a {
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 1.1em;
}

.language-switcher a.active {
    border-color: var(--primary-pink);
    background-color: rgba(233, 30, 99, 0.1);
    color: var(--primary-pink);
}

.language-switcher a:hover {
    transform: translateY(-2px);
    color: var(--primary-pink);
}
/* Fim dos estilos de idioma */

/* Hero Section */
.hero-section {
    color: var(--bg-white);
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    border-bottom-left-radius: var(--border-radius-main);
    border-bottom-right-radius: var(--border-radius-main);
    box-shadow: var(--shadow-elevated);
    background-image: url('sakamoto.jpg');
    background-size: cover;
    background-position: center;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    object-fit: cover;
    opacity: 0.9;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInScale 1s ease forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation-delay: 0.2s;
}

@keyframes fadeInScale {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: clamp(2.8em, 7vw, 4.5em);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 6px 20px rgba(0,0,0,0.25);
    font-weight: 700;
}

.hero-content h1 .highlight-L {
    color: var(--primary-pink);
    font-family: 'Dancing Script', cursive;
    font-size: 1.2em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}


.hero-content p {
    font-size: clamp(1.1em, 2.5vw, 1.4em);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title-main {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}
.section-title-main::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: var(--primary-pink);
    border-radius: 2px;
}

.section-title-main .highlight-L {
    color: var(--primary-pink);
    font-family: 'Dancing Script', cursive;
    font-size: 1.15em;
}

.section-subtitle {
    font-size: clamp(1em, 2.2vw, 1.3em);
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.about-image-wrapper {
    flex: 0 0 450px;
    position: relative;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-elevated);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--border-color);
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: var(--border-radius-sm);
    pointer-events: none;
}
.about-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.about-text {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}
.about-text h3 {
    font-size: clamp(1.8em, 3.5vw, 2.4em);
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-weight: 700;
}
.about-text p {
    margin-bottom: 1.6em;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(233, 30, 99, 0.05) 0%, transparent 40%);
    opacity: 0.8;
    transition: all 0.6s ease;
    z-index: 1;
}
.service-card:hover::before {
    transform: scale(1.1);
    opacity: 1;
    background: radial-gradient(circle at 0% 100%, rgba(233, 30, 99, 0.08) 0%, transparent 60%);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--primary-pink);
}

.service-card i {
    font-size: 4.8em;
    color: var(--primary-pink);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-card h4 {
    font-size: clamp(1.6em, 3vw, 2em);
    color: var(--dark-gray);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 1.05em;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-card .btn {
    margin-top: auto;
    font-size: 0.95em;
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    width: fit-content;
    align-self: center;
    position: relative;
    z-index: 2;
}

/* Courses Section */
.courses-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.course-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-subtle);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--border-color);
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--primary-pink);
}

.course-icon {
    font-size: 4.5em;
    color: var(--primary-pink);
    flex-shrink: 0;
    padding-top: 8px;
}

.course-content h4 {
    font-size: clamp(1.8em, 3.2vw, 2.2em);
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--dark-gray);
}
.course-content p {
    font-size: 1.05em;
    margin-bottom: 25px;
    line-height: 1.7;
}
.course-content .btn {
    padding: 10px 22px;
    font-size: 0.9em;
    border-radius: var(--border-radius-sm);
}

/* Galeria Interna */
.galeria-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.galeria-item {
    position: relative;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/* Portfolio Section (Instagram) */
.portfolio-section {
    background-color: var(--bg-light);
    text-align: center;
}

/* Estilo da caixa de destaque do Instagram */
.instagram-cta {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
    border-radius: var(--border-radius-main);
    padding: 70px 40px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--bg-white);
    box-shadow: var(--shadow-elevated);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.instagram-cta h3 {
    color: var(--bg-white);
    font-size: clamp(2.2em, 4vw, 3em);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.instagram-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1em, 2.2vw, 1.3em);
    margin-bottom: 40px;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

/* Novo estilo para o botão */
.new-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    background-color: var(--bg-white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.new-instagram-btn:hover {
    background-color: var(--primary-pink);
    color: var(--bg-white);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.new-instagram-btn i {
    margin-right: 12px;
    font-size: 1.2em;
}

/* Contact Section & Form */
.contact-section-full {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Adjust the columns for image and text */
    gap: 60px;
    text-align: left;
    align-items: center; /* Align items vertically */
}

.contact-info {
    order: 1; /* Keep contact info on the left */
}

.contact-image-wrapper {
    order: 2; /* Move the image to the right */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-elevated);
}

.contact-info h3 {
    font-size: clamp(1.8em, 3.5vw, 2.3em);
    color: var(--primary-pink);
    margin-bottom: 25px;
}
.contact-info p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Pronúncia do nome */
.name-pronunciation {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--primary-pink);
}
.name-pronunciation i {
    margin-right: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-subtle);
    text-align: left;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-card .quote-icon {
    font-size: 2em;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.05em;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-card .client-name {
    display: block;
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 1.15em;
    color: var(--text-secondary);
}

.contact-detail i {
    font-size: 1.8em;
    color: var(--primary-pink);
    margin-right: 20px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.contact-detail a {
    color: var(--text-secondary);
    font-weight: 500;
    word-break: break-all;
}

/* Removido o estilo do formulário */
.contact-form-wrapper {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0;
    text-align: center;
    font-size: 0.95em;
}

.footer p {
    margin: 0;
    color: inherit;
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
}
.footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }
    .about-image-wrapper img {
        height: auto;
        max-height: 400px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
    .contact-detail {
        justify-content: center;
    }
    .navbar-nav {
        gap: 25px;
    }
    .hero-section {
        min-height: 60vh;
        padding: 100px 0;
    }
    .section-padding {
        padding: 80px 0;
    }
    .instagram-cta {
        padding: 60px 30px;
    }
    .contact-image-wrapper {
        order: 1; /* Move a imagem para cima na versão mobile */
    }
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: var(--shadow-elevated);
        padding: 25px 0;
        border-top: 1px solid rgba(233, 30, 99, 0.15);
        align-items: center;
        border-bottom-left-radius: var(--border-radius-main);
        border-bottom-right-radius: var(--border-radius-main);
    }
    .navbar-nav.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-item a {
        padding: 12px 0;
        display: block;
        width: 85%;
        margin: 0 auto;
        font-size: 1.1em;
    }
    .nav-item a::after {
        left: 0;
        transform: translateX(0);
        width: 100%;
    }
    .hamburger {
        display: flex;
    }
    .hero-section {
        min-height: 50vh;
    }
    .hero-content h1 {
        font-size: clamp(2.2em, 6vw, 3.5em);
    }
    .hero-content p {
        font-size: clamp(0.9em, 2.5vw, 1.2em);
        margin-bottom: 35px;
    }
    .section-title-main {
        font-size: clamp(1.8em, 4.5vw, 2.8em);
    }
    .section-subtitle {
        font-size: clamp(0.9em, 2vw, 1.1em);
        margin-bottom: 50px;
    }
    .hero-actions .btn {
        width: 90%;
        margin: 10px 0;
    }
    .service-card, .course-card {
        padding: 30px;
    }
    .course-card {
        flex-direction: column;
        align-items: center;
    }
    .course-icon {
        margin-bottom: 20px;
    }
    .contact-form-wrapper {
        padding: 35px;
    }
    .contact-detail {
        align-items: center;
    }
    .contact-detail i {
        margin-right: 15px;
    }
    .hero-video-background {
        display: none;
    }
    .hero-video-overlay {
        background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-pink) 100%);
        opacity: 0.9;
    }
    .hero-section {
        background-image: url('sakamoto.jpg');
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.9em;
    }
    .hero-content h1 {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .hero-content p {
        font-size: clamp(0.85em, 2.5vw, 1.05em);
        margin-bottom: 35px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .footer {
        padding: 40px 0;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .btn-whatsapp-agenda {
        padding: 14px 30px;
        font-size: 1em;
    }
    .section-title-main {
        font-size: clamp(1.6em, 4vw, 2.5em);
        margin-bottom: 20px;
    }
    .section-title-main::after {
        bottom: -10px;
        width: 60px;
        height: 3px;
    }
    .section-subtitle {
        font-size: clamp(0.85em, 2vw, 1em);
        margin-bottom: 40px;
    }
    .about-image-wrapper {
        padding: 15px;
    }
    .about-image-wrapper img {
        height: 300px;
    }
    .service-card i {
        font-size: 4em;
    }
    .course-icon {
        font-size: 3.8em;
    }
    .contact-detail {
        flex-direction: column;
        align-items: center;
    }
    .contact-detail i {
        margin-right: 0;
        margin-bottom: 8px;
    }
	/* --- ESTILOS PARA A GALERIA CARROSSEL --- */
.galeria-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.galeria-carrossel {
    margin-top: 50px;
    padding: 0 20px; /* Adicionado para evitar que os slides fiquem colados nas laterais em telas menores */
}

.galeria-item {
    margin: 0 10px; /* Adicionado espaço entre os itens do carrossel */
    position: relative;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/* Estilo para os pontos de navegação (dots) */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-pink);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-pink);
    opacity: 1;
}

/* Estilo para as setas de navegação */
.slick-prev:before, .slick-next:before {
    color: var(--primary-pink);
}

@media (max-width: 600px) {
    .galeria-carrossel {
        padding: 0;
    }
    .galeria-item {
        margin: 0;
    }
}
}