/* Reset do CSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #131313;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

h1, h2, h3 {
    font-family: 'New Rocker', system-ui, sans-serif;
}

/* Hero */
.container-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.imagem-hero {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_cortando_cabelo.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.imagem-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(19,19,19,0.9) 100%);
}

/* Menu */
.menu {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.scrolled {
    background: transparent;
    backdrop-filter: blur(12px);
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 16px 32px;
    border-radius: 45px;
    border: 1px solid #828282;
    backdrop-filter: blur(8px);
    align-items: center;
}

.menu nav ul li {
    transition: color 0.3s ease;
}

.menu nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu nav ul li:hover,
.menu nav ul li a:hover {
    color: #25A8DC;
    cursor: pointer;
}

/* Info Hero */
.info {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeIn 0.8s ease-out;
}

.info h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.info p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.95;
}

.info button {
    background: #178BBE;
    color: #fff;
    border: 1px solid #25A8DC;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(23, 139, 190, 0.28);
    transition: all 0.3s ease;
}

.info button:hover {
    background: #25A8DC;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 168, 220, 0.4);
}

.info button:active {
    background: #0B6EA0;
    transform: translateY(0);
}

/* About*/
#about {
    padding: 80px 20px;
}

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

.about-tittle {
    text-align: center;
    margin-bottom: 60px;
}

.about-tittle h1 {
    font-size: clamp(40px, 6vw, 64px);
    animation: fadeIn 0.6s ease-out;
}

.about-text {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(20px, 4vw, 56px);
    align-items: start;
    animation: fadeIn 0.8s ease-out;
}

.about-text .copy {
    grid-column: 1;
}

.about-text .copy p {
    font-size: 19px;
    line-height: 2.5;
    color: rgba(255, 255, 255, 0.9);
}

.about-text img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 2px solid #828282;
    border-radius: 30px;
}

.stats {
    grid-column: 1;
    margin-top: 40px;
}

.stats .icon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.stats li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stats li:hover {
    transform: translateY(-4px);
}

.stats .ico {
    grid-row: 1 / span 2;
    color: #25A8DC;
}

.stats .ico svg {
    width: 48px;
    height: 48px;
}

.stats .num {
    font-weight: 800;
    font-size: 18px;
}

.stats .label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Galeria */
#galeria {
    padding: 80px 20px;
    background-color: rgba(0, 0, 0, 0.3);
}

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

.galeria-titulo {
    font-size: clamp(40px, 6vw, 64px);
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out;
}

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

.carousel__btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel__btn:hover:not(:disabled) {
    background: rgba(37, 168, 220, 0.2);
    border-color: #25A8DC;
}

.carousel__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.imagens-corte {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    padding: 12px 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 168, 220, 0.3) rgba(0, 0, 0, 0.1);
}

.imagens-corte::-webkit-scrollbar {
    height: 8px;
}

.imagens-corte::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.imagens-corte::-webkit-scrollbar-thumb {
    background: rgba(37, 168, 220, 0.3);
    border-radius: 4px;
}

.imagens-corte img {
    flex: 0 0 320px;
    height: 370px;
    object-fit: cover;
    border-radius: 20px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(130, 130, 130, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.imagens-corte img:hover {
    transform: scale(1.05);
}

/* Endereço */
#endereço {
    padding: 80px 20px;
}

.endereço h2 {
    text-align: center;
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out;
}

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

.mapa iframe {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    border: 2px solid rgba(130, 130, 130, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Agendar */
.agendar {
    text-align: center;
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 24px;
    animation: fadeIn 0.8s ease-out;
}

.agendar h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 32px;
}

.agendar p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 2;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.button2, .button3 {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.button2 {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
}

.button2:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.button2 svg {
    width: 24px;
    height: 24px;
}

.button3 {
    background: #25A8DC;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 168, 220, 0.28);
}

.button3:hover {
    background: #1e8db8;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 168, 220, 0.4);
}

.button3 svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(130, 130, 130, 0.3);
    padding: 48px 20px 24px;
    margin-top: 80px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #25A8DC;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(37, 168, 220, 0.2);
    border-color: #25A8DC;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(130, 130, 130, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

a {
    cursor: pointer;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-text {
        grid-template-columns: 1fr;
    }

    .about-text img {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
    }

    .stats {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .menu nav ul {
        gap: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .menu nav ul li:first-child img {
        height: 20px;
    }

    .carousel {
        gap: 8px;
    }

    .carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .imagens-corte {
        gap: 16px;
    }

    .imagens-corte img {
        flex: 0 0 280px;
        height: 340px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .button2, .button3 {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .menu nav ul {
        display: flex;
        gap: 15px;
        padding: 16px 22px;
        font-size: 12px;
    }

    .stats .icon {
        grid-template-columns: 1fr;
    }
}
