/* ================== VINY MULHER - CSS ORGANIZADO ================== */

/* ==================== RESET E BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* ==================== ANIMAÇÕES GLOBAIS ==================== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== LOADER ==================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e91e63;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Enquanto a página carrega (classe aplicada no body), esconder todo o conteúdo
   exceto o #loader para evitar flashes antes do carregamento completo */
body.loading > *:not(#loader) {
    visibility: hidden;
}

body.loading {
    overflow: hidden;
}

/* ==================== ACESSIBILIDADE ==================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}

/* ==================== BOTÃO WHATSAPP FLUTUANTE ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 50;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 100;
    height: 110px;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-110px);
}

.header.visible {
    transform: translateY(0);
}

.header.menu-open {
    transform: translateY(0);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 95px;
    display: block;
}

/* ==================== NAVEGAÇÃO DESKTOP ==================== */
.nav {
    display: none;
    gap: 50px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0 10px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF1493, #FF69B4);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #FF1493;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ==================== BOTÃO CTA HEADER ==================== */
.header-cta {
    display: none;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.3);
}

/* ==================== MENU HAMBURGER ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FF1493;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #FF69B4;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

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

/* ==================== MENU MOBILE ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 30px;
    transition: right 0.35s ease;
    z-index: 50;
    overflow-y: auto;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 18px;
    display: block;
}

.mobile-menu a:hover {
    color: #c4161c;
}

.mobile-menu.active {
    right: 0;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #fff;
    overflow: hidden;
    gap: 40px;
}

.hero-left {
    flex: 1;
    padding: 60px 50px 60px 80px;
    text-align: left;
    animation: slideInLeft 0.8s ease;
}

.hero h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #FF1493;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-right {
    flex: 1;
    padding: 40px 80px 40px 0;
    text-align: right;
    z-index: 2;
    animation: slideInRight 0.8s ease;
}

/* Reserve space for hero image to avoid layout shifts. */
.hero-right {
    flex: 1;
    padding: 40px 80px 40px 0;
    text-align: right;
    z-index: 2;
    animation: slideInRight 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* Small critical fallback to prevent font flash layout shifts for headings */
.hero h1, .hero p {
    font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    opacity: 0.98;
}

/* ==================== SEÇÃO SOBRE ==================== */
.about-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(255, 192, 203, 0.15) 0%, rgba(255, 182, 193, 0.1) 100%);
    margin-top: -5px;
}

.about-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    animation: slideInDown 0.6s ease-out;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF1493, #FF69B4);
    border-radius: 2px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    animation: slideInLeft 0.6s ease-out 0.2s backwards;
}

.about-text p {
    color: #333;
    font-size: 1.05em;
    line-height: 1.8;
}

.about-instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    animation: slideInRight 0.6s ease-out 0.2s backwards;
}

.about-instagram iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    border: none;
}

/* ==================== SEÇÃO CURSOS ==================== */
.cursos-section {
    padding: 60px 20px;
    background: #fff;
    margin-top: -5px;
}

.cursos-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cursos-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.cursos-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF1493, #FF69B4);
    border-radius: 2px;
}

/* ==================== BARRA DE BUSCA ==================== */
.busca-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    flex-wrap: wrap;
    gap: 15px;
}

.busca-input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 1em;
    border: 2px solid #e91e63;
    border-radius: 15px;
    background: #fff;
    color: #333;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.busca-input:focus {
    outline: none;
    border-color: #FF1493;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.25);
    transform: translateY(-2px);
}

.busca-input::placeholder {
    color: #999;
}

.resultado-busca {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    min-height: 20px;
}

/* ==================== CARDS DE CURSOS ==================== */
.cursos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.curso-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInUp 0.6s ease-out;
}

.curso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF1493 0%, #FF69B4 100%);
    z-index: 10;
}

.curso-imagem {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.08);
}

.curso-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.curso-header {
    margin-bottom: 15px;
    padding: 25px 25px 0 25px;
}

.curso-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curso-card h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 25px;
}

.curso-descricao {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 25px;
}

.curso-preco {
    font-size: 1.8em;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    padding: 0 25px;
}

.btn-agendar {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: block;
    margin: 0 25px 25px 25px;
    width: calc(100% - 50px);
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.35);
}

.btn-agendar:active {
    transform: translateY(0);
}

/* ==================== SEÇÃO MODELOS ==================== */
.modelos-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: #fff;
}

.modelos-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.modelos-section h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.modelos-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.modelos-subtitulo {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.95;
}

.modelos-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.modelo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modelo-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}

.modelo-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.modelo-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.modelo-card p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-modelo {
    background: #fff;
    color: #FF1493;
    padding: 16px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #FF1493;
    cursor: pointer;
}

.btn-modelo:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

/* ==================== SEÇÃO LOCALIZAÇÃO ==================== */
.localizacao-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.localizacao-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.localizacao-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.localizacao-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF1493, #FF69B4);
    border-radius: 2px;
}

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

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.horarios-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.horarios-container h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.horarios-list {
    margin-bottom: 30px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1em;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item .dia {
    color: #333;
    font-weight: 600;
}

.horario-item .horas {
    color: #e91e63;
    font-weight: 600;
}

.horario-item.fechado .horas {
    color: #999;
}

/* ==================== SEÇÃO CRIADORA ==================== */
.criadora-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 192, 203, 0.1) 100%);
    margin-top: -5px;
}

.criadora-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.criadora-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-direction: column;
}

.criadora-imagem {
    width: 100%;
    display: flex;
    justify-content: center;
    animation: slideInDown 0.6s ease-out 0.2s backwards;
    order: -1;
}

.criadora-imagem img {
    width: 100%;
    max-width: 300px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.criadora-texto {
    width: 100%;
    animation: slideInRight 0.6s ease-out 0.2s backwards;
}

.criadora-texto h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.criadora-texto p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #FF69B4;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FF69B4;
}

/* ==================== REDES SOCIAIS ==================== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.social-icon {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FF69B4;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
    margin: 0;
    flex-shrink: 0;
}

.social-icon:hover {
    background: #FF1493;
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
}

.social-icon:active {
    transform: translateY(-2px) scale(1.08);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok:hover {
    background: #000;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    padding-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 0.9em;
}

/* ================== RESPONSIVIDADE ================== */

/* Desktop - 1024px e acima */
@media (min-width: 1024px) {
    body {
        padding-top: 90px;
    }

    .nav {
        display: flex !important;
    }

    .header-cta {
        display: block !important;
    }

    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .criadora-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .criadora-imagem {
        flex: 0 1 320px;
        min-width: 250px;
        width: auto;
        order: 1;
        animation: slideInRight 0.6s ease-out 0.2s backwards;
    }

    .criadora-texto {
        flex: 1;
        min-width: 320px;
        animation: slideInLeft 0.6s ease-out 0.2s backwards;
    }
}

/* Tablet - até 1023px */
@media (max-width: 1023px) {
    body {
        padding-top: 90px;
    }

    .header {
        height: 90px;
    }

    .header-inner {
        padding: 12px 20px;
    }

    .logo {
        height: 75px;
    }

    .nav {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 100 !important;
    }

    .mobile-menu {
        top: 0;
        height: 100vh;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 70px 20px 100px 20px;
        min-height: auto;
    }

    .hero-left {
        padding: 20px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9em;
    }

    .hero-right {
        flex: 1;
        padding: 20px;
        width: 100%;
    }

    .hero-right img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .hero-wave {
        height: 80px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text {
        font-size: 0.95em;
    }

    .about-instagram {
        width: 100%;
    }

    .about-instagram iframe {
        width: 100% !important;
        max-width: 320px;
    }

    .about-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .busca-container {
        margin-bottom: 30px;
    }

    .busca-input {
        max-width: 100%;
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .resultado-busca {
        font-size: 0.85em;
        width: 100%;
    }

    .cursos-section {
        padding: 50px 20px;
    }

    .cursos-section h2 {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .cursos-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .curso-imagem {
        height: 150px;
    }

    .curso-card h3 {
        font-size: 1.25em;
        margin-bottom: 10px;
    }

    .curso-descricao {
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .curso-preco {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .btn-agendar {
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
    }

    .modelos-section {
        padding: 50px 20px;
    }

    .modelos-section h2 {
        font-size: 1.8em;
    }

    .modelos-subtitulo {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .modelos-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .modelo-card {
        padding: 30px 20px;
    }

    .modelo-card h3 {
        font-size: 1.2em;
    }

    .btn-modelo {
        padding: 14px 40px;
        font-size: 0.95em;
    }

    .localizacao-section {
        padding: 50px 20px;
    }

    .localizacao-section h2 {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mapa-container {
        height: 300px;
    }

    .mapa-container iframe {
        height: 300px !important;
    }

    .horarios-container {
        padding: 30px 20px;
    }

    .horarios-container h3 {
        font-size: 1.3em;
    }

    .horario-item {
        padding: 12px 0;
        font-size: 0.9em;
    }

    .criadora-section {
        padding: 50px 20px;
    }

    .criadora-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .criadora-texto {
        order: 1;
    }

    .criadora-imagem {
        width: 100%;
        order: 2;
    }

    .criadora-imagem img {
        max-width: 280px;
    }

    .criadora-texto h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .criadora-texto p {
        font-size: 0.95em;
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }

    .footer-section p {
        font-size: 0.9em;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet - 769px a 1023px */
@media (min-width: 769px) and (max-width: 1023px) {
    .social-links {
        gap: 15px;
        justify-content: center;
    }

    .social-icon {
        width: 52px;
        height: 52px;
    }

    .social-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile - até 768px */
@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .header-inner {
        padding: 12px 20px;
    }

    .logo {
        height: 70px;
    }

    .nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}
