/* Global Styles */
:root {
    --primary-color: #ff69b4;
    --secondary-color: #f8f9fa;
    --dark-color: #333;
    --light-color: #fff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-image: url('../imagens/outras\ fotos/penteado01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    border: 2px solid white;
}

/* Header/Navigation */
.header {
    position: fixed;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ff69b4;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: #ff1493;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background-color: white;
        padding: 60px 20px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        margin: 20px 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../imagens/outras\ fotos/redecker_sperb_555_salao-de-beleza-_ab.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-color);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    color: #ffffff;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 100px auto 0;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.cta-button:hover {
    background: #ff4da6;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagens/outras fotos/redecker_sperb_555_salao-de-beleza-_ab.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.about-text {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagens/outras fotos/redecker_sperb_555_salao-de-beleza-_ab.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    transition: var(--transition);
    color: var(--dark-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Hairstyles Section */
.hairstyles {
    padding: 4rem 0;
}

.hairstyles .container {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('imagens/outras fotos/franjão-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hairstyles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hairstyle-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hairstyle-item:hover {
    transform: translateY(-5px);
}

.hairstyle-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hairstyle-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.hairstyle-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Haircuts Section */
.haircuts {
    padding: 4rem 0;
    background-color: #fff;
}

.haircuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.haircut-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.haircut-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.haircut-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.haircut-item:hover img {
    transform: scale(1.05);
}

.haircut-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
}

.haircut-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease, font-size 0.3s ease;
    font-size: 16px;
}

.gallery-item:hover::after {
    transform: translateY(0);
    font-size: 24px; /* Aumento de 50% do tamanho original de 16px */
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Hair Colors Section */
.haircolors {
    padding: 4rem 0;
    background: url('imagens/outras fotos/foto-01-fundoDIVtinturas.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.haircolors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.haircolors .container {
position: relative;
z-index: 2;
}

.haircolors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
    gap: 2rem;
    margin-top: 2rem;
}

.haircolor-item {
    background: rgba(249, 249, 249, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.haircolor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.haircolor-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.haircolor-item:hover img {
    transform: scale(1.05);
}

.haircolor-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
}

.haircolor-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
}

/* Unhas Section */
.unhas {
    padding: 80px 0;
    background: url('imagens/outras fotos/interior_salao.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.unhas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.unhas .container {
    position: relative;
    z-index: 2;
}

.unhas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.unha-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.unha-item:hover {
    transform: translateY(-5px);
}

.unha-item h3 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
    margin: 2rem 0;
}

.stars {
    color: #ffd700;
}

.red-star {
    color: #ff0000;
    margin: 1rem 0;
}

/* Treatments Section */
.treatments {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.treatment-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.treatment-item:hover {
    transform: translateY(-5px);
}

.treatment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.treatment-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.treatment-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.submit-button {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #ff4da6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light-color);
    margin-left: 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-bottom p {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .manicures-grid {
        gap: 15px;
    }

    .manicure-item {
        padding: 15px;
    }

    .services-grid,
    .gallery-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .service-card,
    .price-card {
        padding: 1.5rem;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--light-color);
        padding: 5rem 2rem;
        text-align: center;
        transition: 0.3s ease;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark-color);
        margin: 5px 0;
        transition: var(--transition);
        position: relative;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        padding: 0 15px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}
