/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores */
    --primary-beige: #F5F2E8;
    --primary-ivory: #FFF8DC;
    --soft-gray: #E8E6E3;
    --emerald: #50C878;
    --sapphire: #0F52BA;
    --burgundy: #800020;
    --mocha: #967969;
    --chocolate: #7B3F00;
    --dark-gray: #2C2C2C;
    --white: #FFFFFF;
    
    /* Tipografia */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.95), rgba(220, 220, 220, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 100px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--emerald);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--primary-beige);
    color: var(--emerald);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--emerald);
}

.contact-btn {
    background: var(--emerald);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--sapphire);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, #2dd4bf 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sapphire) 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-gray);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-prev, .hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--mocha);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories */
.categories {
    padding: var(--section-padding);
    background: var(--primary-beige);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.category-content p {
    color: var(--mocha);
    margin-bottom: 20px;
}

.category-link {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--sapphire);
}

/* Featured Projects */
.featured-projects {
    padding: var(--section-padding);
}

.projects-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-slide {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.project-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

.project-slide:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.project-info p {
    color: var(--mocha);
    margin-bottom: 20px;
}

.project-link {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--sapphire);
}

/* About */
.about {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--mocha);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    font-size: 2rem;
    color: var(--emerald);
    margin-top: 5px;
}

.feature h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.feature p {
    color: var(--mocha);
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--primary-ivory);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--mocha);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-serif);
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--mocha);
    font-size: 0.9rem;
}

/* Blog */
.blog {
    padding: var(--section-padding);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-category {
    background: var(--emerald);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.post-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: var(--dark-gray);
}

.post-content p {
    color: var(--mocha);
    margin-bottom: 20px;
}

.post-link {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: var(--sapphire);
}

/* Contact */
.contact {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--emerald);
    margin-top: 5px;
}

.contact-item h4 {
    font-family: var(--font-serif);
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--mocha);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--soft-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-sans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 80px;
    background: var(--soft-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.contact-form-container p {
    color: var(--mocha);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    color: #ccc;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--emerald);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sapphire);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-family: var(--font-serif);
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--emerald);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--emerald);
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .categories-grid,
    .projects-carousel,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-controls {
        padding: 0 15px;
    }
    
    .hero-prev, .hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover effects para imagens */
.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.3s ease;
}

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

/* Products Layout */
.product-intro {
    padding: 80px 0 40px;
    background: var(--light-beige);
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--mocha);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.intro-content .highlight {
    color: var(--emerald);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn, .quick-view, .wishlist-btn, .add-favorite {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-view-btn::before, .quick-view::before, .wishlist-btn::before, .add-favorite::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
    transition: left 0.5s;
}

.quick-view-btn:hover::before, .quick-view:hover::before, .wishlist-btn:hover::before, .add-favorite:hover::before {
    left: 100%;
}

.quick-view-btn:hover, .quick-view:hover, .wishlist-btn:hover, .add-favorite:hover {
    background: var(--emerald);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.3);
}

.quick-view-btn:active, .quick-view:active, .wishlist-btn:active, .add-favorite:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--emerald);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-description {
    color: var(--mocha);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ffd700;
}

.product-rating span {
    color: var(--mocha);
    font-size: 0.8rem;
}




.add-to-cart-btn, .add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--emerald) 0%, #2dd4bf 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.25);
}

.add-to-cart-btn::before, .add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.add-to-cart-btn:hover::before, .add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart-btn::after, .add-to-cart::after {
    content: '💬';
    font-size: 1.1rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover, .add-to-cart:hover {
    background: linear-gradient(135deg, var(--sapphire) 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

.add-to-cart-btn:hover::after, .add-to-cart:hover::after {
    transform: scale(1.1);
}

.add-to-cart-btn:active, .add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
}

/* Botões Duplos de Orçamento */
.quote-buttons-container {
    display: flex;
    gap: 8px;
    width: 100%;
}

.quote-btn-contact, .quote-btn-whatsapp {
    flex: 1;
    background: linear-gradient(135deg, var(--emerald) 0%, #2dd4bf 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 12px rgba(45, 212, 191, 0.25);
    text-decoration: none;
}

.quote-btn-contact::before, .quote-btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.quote-btn-contact:hover::before, .quote-btn-whatsapp:hover::before {
    left: 100%;
}

.quote-btn-contact::after {
    content: '📧';
    font-size: 1rem;
}

.quote-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

.quote-btn-whatsapp::after {
    content: '📱';
    font-size: 1rem;
}

.quote-btn-contact:hover, .quote-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35);
}

.quote-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.quote-btn-contact:active, .quote-btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(45, 212, 191, 0.25);
}

/* ===== PÁGINA SOBRE ===== */

/* Company Story Section */
.company-story {
    padding: var(--section-padding);
    background: var(--primary-beige);
}

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

.story-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--mocha);
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Mission Vision Values Section */
.mvv-section {
    padding: var(--section-padding);
    background: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mvv-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-ivory);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mvv-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--mocha);
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card li {
    color: var(--mocha);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mvv-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Numbers Section */
.numbers-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.numbers-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.number-label {
    font-size: 1rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--white);
}

.team-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    color: var(--mocha);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--primary-ivory);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.member-role {
    color: var(--emerald);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.member-info p {
    color: var(--mocha);
    margin-top: 15px;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background: var(--primary-beige);
}

.certifications-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

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

.certification {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.certification:hover {
    transform: translateY(-3px);
}

.certification img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.certification h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.certification p {
    color: var(--mocha);
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: var(--white);
}

.timeline-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--emerald);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0 30px;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    background: var(--primary-ivory);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--mocha);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sapphire);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Responsividade para página sobre */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        min-width: 60px;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .timeline-content {
        max-width: none;
        margin-left: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== PÁGINAS DE TERMOS E PRIVACIDADE ===== */

/* Layout principal das páginas legais */
.main-content {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 200px);
}

/* Cabeçalho da página */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--soft-gray) 100%);
    border-radius: var(--border-radius);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--mocha);
    font-weight: 400;
    opacity: 0.8;
}

/* Seção de conteúdo */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--soft-gray);
}

/* Seções individuais de termos/privacidade */
.terms-section,
.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--soft-gray);
}

.terms-section:last-child,
.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2,
.privacy-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--emerald);
    display: inline-block;
}

.terms-section p,
.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: justify;
}

.terms-section ul,
.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-section li,
.privacy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 8px;
    position: relative;
}

.terms-section li::marker,
.privacy-section li::marker {
    color: var(--emerald);
    font-weight: 600;
}

/* Links dentro do conteúdo */
.terms-section a,
.privacy-section a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.terms-section a:hover,
.privacy-section a:hover {
    color: var(--sapphire);
    border-bottom-color: var(--sapphire);
}

/* Responsividade para páginas legais */
@media (max-width: 768px) {
    .main-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .page-header {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section p,
    .privacy-section p,
    .terms-section li,
    .privacy-section li {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .terms-section ul,
    .privacy-section ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Modal de Visualização Rápida */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quick-view-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-body .product-image {
    position: relative;
}

.modal-body .product-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f9fa;
}

.modal-body .product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-body .product-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.3;
}

.modal-body .product-info p {
    color: var(--mocha);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


.modal-body .product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body .product-rating .stars {
    display: flex;
    gap: 2px;
}

.modal-body .product-rating .stars .star {
    color: #ffd700;
    font-size: 16px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, var(--emerald) 0%, #2dd4bf 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}

.modal-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.modal-actions .btn-primary:hover::before {
    left: 100%;
}

.modal-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--sapphire) 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.modal-actions .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.modal-actions .btn-secondary {
    background: rgba(45, 212, 191, 0.1);
    color: var(--emerald);
    border: 2px solid var(--emerald);
    backdrop-filter: blur(10px);
}

.modal-actions .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-actions .btn-secondary:hover::before {
    opacity: 1;
}

.modal-actions .btn-secondary:hover {
    background: var(--emerald);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.3);
}

.modal-actions .btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.2);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-body .product-image img {
        height: 250px;
        object-fit: contain;
    }
    
    .modal-body .product-info h3 {
        font-size: 24px;
    }
    
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 15px;
        gap: 15px;
    }
    
    .modal-body .product-image img {
        height: 200px;
        object-fit: contain;
    }
    
    .modal-body .product-info h3 {
        font-size: 20px;
    }
    
    .modal-body .product-info p {
        font-size: 14px;
    }
    
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Modal de Visualização Rápida */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.product-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.product-modal-body {
    padding: 30px;
}

.product-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.product-modal-category {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-modal-stars {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}

.product-modal-rating-count {
    color: #666;
    font-size: 14px;
}




.product-modal-description {
    margin-bottom: 30px;
}

.product-modal-description h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.product-modal-description p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 15px;
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.product-modal-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-modal-btn-contact {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.product-modal-btn-contact:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.product-modal-btn-whatsapp {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.product-modal-btn-whatsapp:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsivo para Modal */
@media (max-width: 768px) {
    .product-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .product-modal-header,
    .product-modal-body {
        padding: 20px;
    }
    
    .product-modal-title {
        font-size: 24px;
    }
    
    
    .product-modal-actions {
        flex-direction: column;
    }
    
    .product-modal-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}