/* ============================================================
   JÉH BOAVA BARBER STUDIO - ESTILOS COMPLETOS
   ============================================================ */

/* ===== 1. RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 2. BOTÕES ===== */
.btn-primary {
    display: inline-block;
    background: #c9a84c;
    color: #0a0a0a;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #dbb95c;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.btn-agendar-hero {
    font-size: 16px;
    padding: 14px 40px;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
}

.btn-agendar-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(201, 168, 76, 0.5);
}

/* ===== 3. HEADER ===== */
header {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
    white-space: nowrap;
}

nav a:hover {
    color: #c9a84c;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

/* ===== 4. HERO / BANNER ===== */
.hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content img {
    width: 90%;
    max-width: 700px;
    margin-bottom: -80px;
    display: block;
}

.slogan {
    font-size: 20px;
    color: #c9a84c;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slogan-dois {
    font-size: 20px;
    color: #c9a84c;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ===== 5. SOBRE ===== */
.sobre {
    padding: 80px 0;
    background: #0f0f0f;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sobre-texto h2 span {
    color: #c9a84c;
}

.sobre-texto .linha {
    width: 60px;
    height: 3px;
    background: #c9a84c;
    margin: 20px 0;
}

.sobre-texto p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 20px;
}

.sobre-imagem {
    background: #1a1a1a;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 6. SOBRE NÓS ===== */
.sobre-nos {
    padding: 80px 0;
    background: #0a0a0a;
}

.sobre-nos .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
}

.sobre-nos .section-title span {
    color: #c9a84c;
}

.sobre-nos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.sobre-nos-grid .barbeiro-card {
    background: transparent;
    border: none;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.sobre-nos-grid .barbeiro-card .avatar-retrato {
    width: 100%;
    max-width: 320px;
    height: 380px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
}

.sobre-nos-grid .barbeiro-card .avatar-retrato img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-nos-grid .barbeiro-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.sobre-nos-grid .barbeiro-card .especialidade {
    color: #aaa;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== 7. TRABALHOS ===== */
.trabalhos {
    padding: 50px 0;
    background: #0f0f0f;
}

.trabalhos .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trabalhos .section-title span {
    color: #c9a84c;
}

.trabalhos .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

/* ===== 8. INSTAGRAM FEED + OVERLAY ===== */
.instagram-feed-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    overflow: visible !important;
    position: relative;
    /* Necessário para o overlay funcionar */
}

.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 {
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}

.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 .eapps-instagram-feed-posts-item-image {
    border-radius: 8px !important;
}

/* Ajusta as setas do carrossel do Instagram */
.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 .eapps-instagram-feed-posts-slider-nav,
.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 .eapps-instagram-feed-posts-slider-nav-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 .eapps-instagram-feed-posts-slider-nav-prev {
    left: -40px !important;
}

.instagram-feed-container .elfsight-app-5451da6b-bc8b-493b-b582-9f49c2509598 .eapps-instagram-feed-posts-slider-nav-next {
    right: -40px !important;
}

/* Overlay para tapar a marca d'água */
.tapar-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: #0f0f0f;
    z-index: 100;
    pointer-events: none;
}

/* ===== 9. SERVIÇOS ===== */
.servicos {
    padding: 80px 0;
    background: #0a0a0a;
}

.servicos .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.servicos .section-title span {
    color: #c9a84c;
}

.servicos .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.servico-card {
    background: #141414;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s;
}

.servico-card:hover {
    border-color: #c9a84c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.1);
}

.servico-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.3;
}

.servico-card .preco {
    color: #c9a84c;
    font-size: 18px;
    font-weight: 700;
}

/* ===== 10. ESPECIALIDADES ===== */
.especialidades {
    padding: 80px 0;
    background: #0a0a0a;
}

.especialidades .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.especialidades .section-title span {
    color: #c9a84c;
}

.especialidades .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.especialidade-card {
    background: #141414;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s;
}

.especialidade-card:hover {
    border-color: #c9a84c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.1);
}

.especialidade-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* ===== 11. COMO FUNCIONA ===== */
.como-funciona {
    padding: 80px 0;
    background: #0f0f0f;
}

.como-funciona .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.como-funciona .section-title span {
    color: #c9a84c;
}

.como-funciona .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.passo {
    text-align: center;
}

.passo .numero {
    font-size: 48px;
    font-weight: 800;
    color: #c9a84c;
    opacity: 0.3;
}

.passo h4 {
    font-size: 18px;
    margin: 10px 0;
}

.passo p {
    color: #888;
    font-size: 14px;
}

/* ===== 12. ATENDIMENTO DESTAQUE ===== */
.atendimento-wrapper {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.atendimento-destaque {
    color: #c9a84c;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== 13. AGENDAMENTO ===== */
.agendamento {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a, #1a1410);
    text-align: center;
}

.agendamento h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.agendamento h2 span {
    color: #c9a84c;
}

.agendamento p {
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
}

/* ===== 14. DEPOIMENTOS ===== */
.depoimentos {
    padding: 80px 0;
    background: #0a0a0a;
}

.depoimentos .section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.depoimentos .section-title span {
    color: #c9a84c;
}

.depoimentos .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.depoimento-card {
    background: #141414;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: all 0.3s;
}

.depoimento-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.depoimento-card .aspas {
    font-size: 40px;
    color: #c9a84c;
    opacity: 0.3;
    line-height: 0;
}

.depoimento-card p {
    color: #ccc;
    font-size: 15px;
    margin: 15px 0;
    font-style: italic;
    line-height: 1.5;
}

.depoimento-card .autor {
    color: #c9a84c;
    font-weight: 600;
}

/* ===== 15. CONTATO ===== */
.contato {
    padding: 60px 0;
    background: #0f0f0f;
}

.contato .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.contato .section-title span {
    color: #c9a84c;
}

.contato .section-sub {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #141414;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.contato-item:hover {
    border-color: #c9a84c;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.contato-item .icon {
    font-size: 28px;
    color: #c9a84c;
    min-width: 45px;
    text-align: center;
    flex-shrink: 0;
}

.contato-item .info {
    flex: 1;
}

.contato-item h4 {
    font-size: 11px;
    color: #888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contato-item p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

/* ===== 16. WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== 17. AVISO WHATSAPP ===== */
.whatsapp-aviso {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #141414;
    color: #c9a84c;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 998;
    max-width: 260px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.whatsapp-aviso::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #141414;
}

.whatsapp-aviso.visivel {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-aviso p {
    margin: 0;
    line-height: 1.4;
}

/* ===== 18. FOOTER ===== */
footer {
    background: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

footer .logo {
    font-size: 24px;
    margin-bottom: 10px;
}

footer .logo small {
    font-size: 10px;
}

footer p {
    color: #555;
    font-size: 13px;
}

footer a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

footer a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

footer .footer-whatsapp {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

footer .footer-whatsapp i {
    font-size: 18px;
}

.footer-horario {
    color: #c9a84c;
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-horario span:not(:last-child)::after {
    content: '|';
    color: #555;
    margin-left: 8px;
}

/* ===== 19. EFEITO DE APARECER ===== */
.hidden {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.barbeiro-card:nth-child(1) {
    transition-delay: 0.1s;
}

.barbeiro-card:nth-child(2) {
    transition-delay: 0.2s;
}

.servico-card:nth-child(1) {
    transition-delay: 0.05s;
}

.servico-card:nth-child(2) {
    transition-delay: 0.1s;
}

.servico-card:nth-child(3) {
    transition-delay: 0.15s;
}

.servico-card:nth-child(4) {
    transition-delay: 0.2s;
}

.servico-card:nth-child(5) {
    transition-delay: 0.25s;
}

.especialidade-card:nth-child(1) {
    transition-delay: 0.05s;
}

.especialidade-card:nth-child(2) {
    transition-delay: 0.1s;
}

.especialidade-card:nth-child(3) {
    transition-delay: 0.15s;
}

.especialidade-card:nth-child(4) {
    transition-delay: 0.2s;
}

.especialidade-card:nth-child(5) {
    transition-delay: 0.25s;
}

.passo:nth-child(1) {
    transition-delay: 0.1s;
}

.passo:nth-child(2) {
    transition-delay: 0.2s;
}

.passo:nth-child(3) {
    transition-delay: 0.3s;
}

.passo:nth-child(4) {
    transition-delay: 0.4s;
}

.depoimento-card:nth-child(1) {
    transition-delay: 0.1s;
}

.depoimento-card:nth-child(2) {
    transition-delay: 0.2s;
}

.depoimento-card:nth-child(3) {
    transition-delay: 0.3s;
}

.sobre-texto {
    transition-delay: 0.1s;
}

.sobre-imagem {
    transition-delay: 0.3s;
}

/* ===== 20. REMOVER BARRA DE ROLAGEM ===== */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ===== 21. SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== 22. REMOVER EFEITO DE TOQUE CINZA ===== */
a,
button,
.contato-item,
.btn-primary,
.btn-agendar-hero,
.menu-toggle,
nav a {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}

.menu-toggle {
    background: transparent !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

nav a {
    background: transparent !important;
}

.menu-toggle:active,
.menu-toggle:focus,
.menu-toggle:hover,
nav a:active,
nav a:focus,
nav a:hover {
    background: transparent !important;
    outline: none !important;
}

/* ============================================================
   23. RESPONSIVO
   ============================================================ */

/* TABLET (até 992px) */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-nos-grid {
        gap: 30px;
    }

    .hero-content img {
        width: 75%;
        max-width: 550px;
    }

    .btn-agendar-hero {
        font-size: 16px;
        padding: 14px 45px;
    }

    .servicos-grid,
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 600px;
        margin: 0 auto;
    }

    .atendimento-destaque {
        font-size: 20px;
        padding: 8px 20px;
        display: inline-block;
        margin: 0 auto;
    }

    /* Instagram - Tablet */
    .instagram-feed-container {
        padding: 0 45px;
    }

    /* Depoimentos - 1 coluna no tablet */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .depoimento-card {
        padding: 25px;
    }

    .depoimento-card p {
        font-size: 15px;
    }

    .depoimentos .section-title {
        font-size: 34px;
    }
}

/* CELULAR (até 768px) */
@media (max-width: 768px) {
    header {
        height: 60px;
        padding: 4px 0;
        justify-content: flex-start;
    }

    .header-content {
        justify-content: flex-start;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block;
        right: 15px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #0a0a0a;
        padding: 20px;
        border-bottom: 1px solid #222;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 0;
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #1a1a1a;
        width: 100%;
        font-size: 16px;
    }

    .hero {
        min-height: 60vh;
        padding: 100px 0 40px;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .hero-content img {
        width: 80%;
        max-width: 450px;
        margin-bottom: -50px;
    }

    .slogan,
    .slogan-dois {
        font-size: 15px;
    }

    .btn-agendar-hero {
        font-size: 14px;
        padding: 12px 30px;
    }

    .sobre-nos-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .sobre-nos-grid .barbeiro-card .avatar-retrato {
        max-width: 280px;
        height: 340px;
    }

    .sobre-nos-grid .barbeiro-card h3 {
        font-size: 20px;
    }

    .sobre-nos-grid .barbeiro-card .especialidade {
        font-size: 14px;
    }

    .servicos-grid,
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .servico-card,
    .especialidade-card {
        padding: 15px 10px;
    }

    .servico-card h4 {
        font-size: 12px;
    }

    .servico-card .preco {
        font-size: 15px;
    }

    .especialidade-card h4 {
        font-size: 13px;
    }

    .especialidades .section-title {
        font-size: 28px;
    }

    .passos-grid {
        grid-template-columns: 1fr;
    }

    .atendimento-destaque {
        font-size: 16px;
        padding: 6px 18px;
    }

    .atendimento-wrapper {
        margin-top: 30px;
        padding-top: 15px;
    }

    /* Depoimentos - 1 coluna no celular */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .depoimento-card {
        padding: 20px 20px;
    }

    .depoimento-card p {
        font-size: 14px;
        margin: 10px 0;
    }

    .depoimento-card .aspas {
        font-size: 30px;
    }

    .depoimentos .section-title {
        font-size: 28px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 10px;
    }

    .contato-item {
        padding: 14px 16px;
        gap: 14px;
    }

    .contato-item .icon {
        font-size: 24px;
        min-width: 38px;
    }

    .contato-item p {
        font-size: 13px;
    }

    .contato .section-title {
        font-size: 28px;
    }

    .contato .section-sub {
        font-size: 13px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-aviso {
        bottom: 75px;
        right: 12px;
        font-size: 11px;
        padding: 8px 14px;
        max-width: 200px;
    }

    .whatsapp-aviso::after {
        right: 15px;
    }

    .barbeiro-card:active,
    .servico-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    /* Instagram - Celular */
    .instagram-feed-container {
        padding: 0 35px;
    }

    .tapar-watermark {
        height: 40px;
    }
}

/* CELULAR PEQUENO (até 480px) */
@media (max-width: 480px) {
    header {
        height: 55px;
        padding: 3px 0;
    }

    .menu-toggle {
        font-size: 24px;
        right: 12px;
    }

    nav {
        top: 55px;
    }

    footer .footer-whatsapp {
        font-size: 14px;
    }

    footer .footer-whatsapp i {
        font-size: 16px;
    }

    .hero-content img {
        width: 85%;
        max-width: 380px;
        margin-bottom: -50px;
    }

    .slogan,
    .slogan-dois {
        font-size: 13px;
    }

    .btn-agendar-hero {
        font-size: 12px;
        padding: 10px 22px;
    }

    .sobre-nos .section-title {
        font-size: 28px;
    }

    .sobre-nos-grid .barbeiro-card .avatar-retrato {
        max-width: 240px;
        height: 300px;
    }

    .sobre-texto h2 {
        font-size: 28px;
    }

    .servicos-grid,
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .servico-card {
        padding: 12px 8px;
    }

    .servico-card h4 {
        font-size: 11px;
    }

    .servico-card .preco {
        font-size: 13px;
    }

    .servicos .section-title {
        font-size: 24px;
    }

    .servicos .section-sub {
        font-size: 13px;
    }

    .especialidade-card {
        padding: 12px 8px;
    }

    .especialidade-card h4 {
        font-size: 12px;
    }

    .especialidades .section-title {
        font-size: 24px;
    }

    .especialidades .section-sub {
        font-size: 13px;
    }

    /* Depoimentos - 1 coluna no celular pequeno */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 350px;
    }

    .depoimento-card {
        padding: 18px 15px;
    }

    .depoimento-card p {
        font-size: 13px;
    }

    .depoimento-card .aspas {
        font-size: 28px;
    }

    .depoimentos .section-title {
        font-size: 24px;
    }

    .depoimentos .section-sub {
        font-size: 13px;
    }

    .atendimento-destaque {
        font-size: 14px;
        padding: 5px 14px;
    }

    .atendimento-wrapper {
        margin-top: 20px;
        padding-top: 12px;
    }

    .contato-grid {
        gap: 8px;
    }

    .contato-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .contato-item .icon {
        font-size: 20px;
        min-width: 34px;
    }

    .contato-item p {
        font-size: 12px;
    }

    .contato-item h4 {
        font-size: 10px;
    }

    .contato .section-title {
        font-size: 24px;
    }

    .contato .section-sub {
        font-size: 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-aviso {
        bottom: 65px;
        right: 10px;
        font-size: 10px;
        padding: 6px 12px;
        max-width: 170px;
    }

    .footer-horario {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }

    .footer-horario span:not(:last-child)::after {
        content: '';
        margin: 0;
    }

    /* Instagram - Celular pequeno */
    .instagram-feed-container {
        padding: 0 30px;
    }

    .tapar-watermark {
        height: 35px;
    }
}