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

:root {
    --primary-color: #6c63ff;
    --primary-dark: #5a52d9;
    --secondary-color: #ff6b6b;
    --danger-color: #dc3545;
    --text-color: #333;
    --text-light: #666;
    --background-color: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 99, 255, 0.2);
}

/* From Uiverse.io by btongheng */
.btn-hero {
    --1: #644dff;
    --2: #4836bb;
    --3: #654dff63;
    cursor: pointer;
    padding: 0 20px;
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125em;
    font-weight: 800;
    color: #fff;
    background: var(--1);
    border: 2px solid var(--2);
    border-radius: .75rem;
    box-shadow: 0 5px 0 var(--2);

    transition: all .1s ease;
    transition: transform .3s ease;
    filter: drop-shadow(0 15px 20px var(--3));
}

.btn-hero:hover {
    color: white;
    transform: scale(1.05);
}

.btn-hero:active {

    transform: translateY(8px);
    box-shadow: 0 0 0 var(--3);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Overlay para o fundo */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
    border-radius: 20px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 997;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6) !important;
    /* Força a cor de fundo */
    backdrop-filter: blur(10px) !important;
    /* Força o efeito de blur */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.062)
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 20px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0;
}

.logo img {
    height: 30px;
    width: auto;
}

.search-icon,
.cart-icon {
    font-size: 1.2rem;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    color: var(--gray-700);
    transition: var(--transition);
}

.search-icon:hover,
.cart-icon:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu Hambúrguer */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.bar1,
.bar2,
.bar3 {
    width: 100%;
    height: 3px;
    background-color: var(--gray-700);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger-menu.active .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary-color);
}

.hamburger-menu.active .bar2 {
    opacity: 0;
}

.hamburger-menu.active .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--primary-color);
}

/* Menu Lateral */
.side-menu {
    position: fixed;
    top: 0px;
    left: -360px;
    width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 10000;
    transition: var(--transition);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.side-menu.active {
    left: 0px;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.side-menu-header .logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--primary-color);
}

.side-menu-content {
    padding: 20px;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gray-700);
    position: relative;
    padding-bottom: 10px;
}

.menu-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-categories li,
.menu-nav li {
    margin-bottom: 12px;
}

.menu-categories li a,
.menu-nav li a {
    display: flex;
    align-items: center;
    color: var(--gray-700);
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-categories li a:hover,
.menu-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.menu-categories li a i,
.menu-nav li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.menu-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.menu-auth .login-btn,
.menu-auth .register-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-auth .login-btn i,
.menu-auth .register-btn i {
    margin-right: 10px;
}

/* Barra de Pesquisa */
.search-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--white);
    z-index: 1001;
    display: flex;
    align-items: center;
    padding: 0 40px;
    transform: translateY(-100%);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-bar.active {
    transform: translateY(0);
}

.search-bar input {
    flex: 1;
    height: 50px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
}

.search-bar button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    outline: none;
    height: 50px;
    width: 50px;
    border-radius: var(--border-radius);
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--primary-dark);
}

.close-search {
    margin-left: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-700);
    transition: var(--transition);
}

.close-search:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    top: 20px;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 40px;
    max-width: calc(100% - 40px);
    min-height: calc(100vh - 40px);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    background-image: url('../assets/fundo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: #00000011 0px 0px 15px 5px;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--gray-800);
    text-shadow: 0px 0px 2px #00000040;
}



.hero-content p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 40px;



}

.hero-buttons {
    display: flex;
    gap: 20px;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        position: fixed;
        top: 0px !important;
        /* Força a navbar a ficar no topo */
        left: 0;
        padding: 15px 20px;
        border-radius: 0px;
        background-color: rgba(255, 255, 255, 0.6) !important;
        /* Força a cor de fundo */
        backdrop-filter: blur(10px) !important;
        /* Força o efeito de blur */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.062) !important;
        /* Força a sombra */
        transition: none !important;
        /* Desativa transições */
    }

    .hero {
        top: 0;
        flex-direction: column;
        padding: 120px 20px 60px;
        text-align: left;
        max-width: 100%;
    }


    .hero-content {
        text-align: left;
        padding: 0;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    }

    .btn-hero {
        padding: 0 20px;
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-size: 20px;
        font-weight: 800;
    }
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Designs Populares */
.popular-designs {
    padding: 100px 20px;
    background-color: rgb(243, 243, 243);
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 0;

}

.design-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.design-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.design-card:hover .design-image img {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-btn {
    background-color: var(--white);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.design-info {
    padding: 20px;
}

.design-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.design-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.design-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.add-to-cart {
    background-color: var(--gray-100);
    color: var(--gray-700);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

/* Seção de grids */


/* Seção de Serviços */
.services {
    padding: 100px 20px;
    background-color: var(--gray-100);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

/* CTA Design Personalizado */
.custom-design-cta {
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    border-radius: 20px;
    overflow: hidden;

}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

/* Depoimentos */


/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 80px 20px 20px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    border-radius: 20px;

}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 30px;
    flex: 1 1 300px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--gray-400);
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2 1 600px;
}

.footer-column {
    flex: 1 1 200px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-column ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-800);
    color: var(--white);
    margin-left: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Carrinho de Compras */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 20px;
    transition: var(--transition);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
    font-size: 1.5rem;
}

.close-cart {
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-700);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 60px;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-quantity button {
    background: var(--gray-100);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
    color: white;
}

.cart-item-quantity span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

.remove-item {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: var(--danger-color);
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.empty-cart p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--gray-100);
    padding: 100px 20px 20px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--primary-color);
}

/* Página de Produto */
.product-details {
    padding: 60px 20px;
    background-color: var(--white);
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    flex: 1 1 500px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.product-info {
    flex: 1 1 500px;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category {
    background-color: var(--gray-200);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

.rating span {
    margin-left: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price {
    margin-bottom: 30px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

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

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-description p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-guarantee {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    padding: 15px;
    border-radius: var(--border-radius);
}

.product-guarantee i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Produtos Relacionados */
.related-products {
    padding: 80px 20px;
    background-color: var(--gray-100);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Página de Design Personalizado */
.custom-hero {
    padding: 180px 20px 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.custom-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Como Funciona */
.how-it-works {
    padding: 100px 20px;
    background-color: var(--white);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--gray-300);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

/* Formulário de Solicitação */
.custom-form-section {
    padding: 100px 20px;
    background-color: var(--gray-100);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.custom-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
}

.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    background-color: var(--gray-100);
    border: 1px dashed var(--gray-400);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-label:hover {
    background-color: var(--gray-200);
}

.file-upload-label i {
    margin-right: 10px;
    color: var(--primary-color);
}

input[type="file"] {
    display: none;
}

.file-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-200);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-hero {
    padding: 120px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.1));
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Timeline Styles */
.our-story {
    padding: 80px 40px;
}

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

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

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item .year {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}

.timeline-item .content {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 45%;
    margin-left: 55%;
}

.timeline-item:nth-child(even) .content {
    margin-left: 0;
    margin-right: 55%;
}

/* MVV Section Styles */
.mvv-section {
    padding: 80px 40px;
    background: var(--gray-100);
}

.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.mvv-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    margin-bottom: 15px;
    color: var(--gray-800);
}

.mvv-card ul {
    text-align: left;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.mvv-card ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Team Section Styles */
.team-section {
    padding: 80px 40px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.team-member h3 {
    margin-bottom: 5px;
    color: var(--gray-800);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .bio {
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-links a {
    color: var(--gray-600);
    margin: 0 8px;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* Numbers Section Styles */
.numbers-section {
    padding: 80px 40px;
    background: var(--gray-100);
}

.numbers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.number-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.number-card h3 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 10px;
}



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

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

.author-info h4 {
    color: var(--gray-800);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Expertise Section Styles */
.expertise-section {
    padding: 80px 40px;
    background: var(--gray-100);
}

.expertise-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.expertise-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-card h3 {
    margin-bottom: 15px;
    color: var(--gray-800);
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

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

.info-item h3 {
    color: var(--gray-800);
    margin-bottom: 5px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo h1 {
        display: none;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .timeline-item .content {
        width: 100%;
        margin: 30px 0 0 0;
    }

    .timeline-item:nth-child(even) .content {
        margin: 30px 0 0 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    footer {
        background-color: var(--gray-900);
        color: var(--white);
        padding: 80px 20px 20px;
        position: relative;
        margin: 0 auto;
        margin-bottom: 0px;
        width: 100%;
        border-radius: 0px;

    }
}

/* Est
ilos para os cards de produtos na página inicial */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.design-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.design-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.design-card:hover .design-image img {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 92, 231, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-btn {
    background: white;
    color: #6c5ce7;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #6c5ce7;
    color: white;
    transform: scale(1.05);
}

.design-info {
    padding: 20px;
}

.design-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.design-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.design-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6c5ce7;
}

.add-to-cart {
    background: #6c5ce7;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart:hover {
    background: #5a4fcf;
    transform: scale(1.1);
}

.add-to-cart i {
    font-size: 0.9rem;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
    .designs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .design-image {
        height: 180px;
    }

    .design-info {
        padding: 15px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .designs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .design-image {
        height: 160px;
    }
}