/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #e91e63;
    --background-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    height: 80px;
}


.logo {

    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);

    width: 150px;   /* controla o tamanho da imagem (diminua ou aumente conforme necessário) */
    height: auto;  /* mantém a proporção */
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    margin-left: auto;
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-login {
    background-color: var(--accent-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav-links.active {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 20px;
    z-index: 999;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../img/Banner de manicure1200x600.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: url('../img/borboleta.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                    url('../img/Banner de manicure3-900x900.png');
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d81b60;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 25px;
    height: 25px;
    background-image: url('../img/borboleta.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 20px;
    height: 20px;
    background-image: url('../img/borboleta.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
}

.service-card p {
    padding: 0 20px;
    color: var(--secondary-color);
}

.service-card .price {
    display: block;
    padding: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 22px;
    height: 22px;
    background-image: url('../img/borboleta.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--secondary-color);
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-color);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1200px) {
    .testimonial-card {
        flex: 0 0 33.33%;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-color);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.map {
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 18px;
    height: 18px;
    background-image: url('../img/borboleta.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}













/* Tips Section Styles */
.tips {
    padding: 80px 0;
    background-color: #fafafa;
}

.tips .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.tips-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
    background-color: #e9e9e9;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: #d4a373;
    color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tip-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4a373;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tip-content {
    padding: 20px;
}

.tip-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.tip-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: #d4a373;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.tips-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tips-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Modal Styles */
.tip-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 20px 0;
}

.modal-body h2 {
    color: #333;
    margin-bottom: 15px;
}

.modal-body .tip-meta {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.modal-body .tip-full-content {
    line-height: 1.6;
    color: #444;
}

.modal-body .tip-full-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .tips-categories {
        gap: 5px;
    }
    
    .category-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }
}









/* About Section Styles */
        .about {
            padding: 80px 0;
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            
            flex: 1;
            min-width: 300px;
            background-image: url('../img/img-sobremim.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 20px;
            border-radius: 10px;
            transition: background-image 0.5s ease;
        }

        .about-text.darkened {
           
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/img-sobremim.jpg');
        }

        .about-text.darkened p {
            color: white;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #b38557;
            background-color: rgba(0, 0, 0, 0.432);
            position: relative;
            padding-bottom: 10px;
            padding-left: 50px;
        }

        .about-text h2:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 40px;
            background-image: url('../img/borboleta.png');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
            z-index: 1;
        }

        .about-text h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50px;
            width: 60px;
            height: 3px;
            background-color: #d4a373;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.02);
        }
        
        .read-more-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #d4a373;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .read-more-btn:hover {
            background-color: #c49363;
        }

        /* Butterfly Animation for Read More */
        @keyframes butterflyFly {
            0% { transform: translateX(0) rotate(0deg); opacity: 0; }
            25% { transform: translateX(20px) rotate(5deg); opacity: 0.7; }
            50% { transform: translateX(40px) rotate(-5deg); opacity: 1; }
            75% { transform: translateX(60px) rotate(5deg); opacity: 0.7; }
            100% { transform: translateX(80px) rotate(0deg); opacity: 0; }
        }

        .read-more-btn.animate::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 30px;
            background-image: url('../img/borboleta.png');
            background-size: contain;
            background-repeat: no-repeat;
            transform: translate(-50%, -50%);
            animation: butterflyFly 1.5s ease-out forwards;
            z-index: 10;
        }

        .read-more-btn.animate {
            position: relative;
        }
        
        .text-truncate {
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column-reverse;
            }
            
            .about-text, .about-image {
                width: 100%;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
        }
