@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Raleway:wght@300;400;500&display=swap');

:root {
    --primary-color: #d4af37;
    --secondary-color: #111111;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --text-light: #777777;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.btn,
.btn-outline {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-outline {
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 70px;
    height: auto;
    transform: scale(1.5);
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(3.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: url('../image/capa-pc.jpg') no-repeat center center;
    background-size: 100% 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero::before,
.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.247);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

/* Featured Collections */
.featured-collections {
    padding: 100px 0;
    background-color: var(--light-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
}

.collection-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    background: url('../image/capa-footer.jpeg') no-repeat center center/cover;
    color: var(--light-color);
}

.about-section::before,
.about-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 34, 34, 0.7);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 0 20px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial span {
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--light-color);
}

.footer-col a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons .fab {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Instagram */
.social-icons .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a[aria-label="Instagram"]:hover .fa-instagram {
    -webkit-text-fill-color: white;
}

/* Gmail */
.social-icons .fa-gmail {
    color: #EA4335;
    /* Vermelho característico do Gmail */
}

.social-icons a[aria-label="Gmail"]:hover {
    background-color: #eaebec;
}

.social-icons a[aria-label="Gmail"]:hover .fa-gmail {
    color: white;
}


/* WhatsApp */
.social-icons .fa-whatsapp {
    color: #25D366;
}

.social-icons a[aria-label="WhatsApp"]:hover {
    background-color: #edf0ee;
}

.social-icons a[aria-label="WhatsApp"]:hover .fa-whatsapp {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: 60% center;
    }
}

















/* Main Collections Section */
.main-collections {
    padding: 100px 0;
    background-color: var(--light-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    text-align: center;
}

.collection-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.collection-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-card {
        height: 350px;
    }
}














/* Hero Section */
.product-hero {
    position: relative;
    height: 40vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 80px;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.4);
}

.product-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    max-width: 900px;
    width: 90%;
    border-radius: 8px;
    overflow: hidden;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
}

.modal-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.modal-price {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-description {
    margin-bottom: 30px;
}

.modal-description h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.modal-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-description li {
    margin-bottom: 8px;
}

/* Responsividade */
@media (max-width: 768px) {

    .modal-image,
    .modal-info {
        flex: 100%;
        padding: 20px;
    }

    .modal-image {
        padding-bottom: 0;
    }

    .modal-image img {
        max-height: 300px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}









/* Estilos do Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-img {
    margin-top: 80px;
    min-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: none;
}

.carousel-img.active {
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow.prev {
    left: 15px;
}

.carousel-arrow.next {
    right: 15px;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* NOVOS ESTILOS PARA O MODAL LADO A LADO */
.modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-container {
    flex: 1;
    min-width: 50%;
    padding-right: 20px;
    margin-bottom: 0;
    /* remove margin bottom que tinha antes */
    position: relative;
    /* para as setas ficarem posicionadas */
}

.modal-info {
    flex: 1;
    min-width: 45%;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .carousel-container,
    .modal-info {
        flex: 100%;
        min-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

/* Modal estilos gerais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.modal-description h3 {
    margin-top: 1.2em;
    margin-bottom: 0.3em;
    font-weight: 600;
}

.modal-description p {
    line-height: 1.5;
}

.modal-price {
    font-size: 1.5em;
    color: #d4af37;
    font-weight: 700;
    margin: 10px 0;
    display: block;
}

.modal-info ul {
    list-style: none;
    padding-left: 0;
}

.modal-info ul li {
    margin-bottom: 6px;
}

.modal-info ul li strong {
    font-weight: 600;
}


.btn:hover {
    background-color: #555;
}















.product-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* ou ajuste a altura conforme sua necessidade */
    overflow: hidden;
}

.product-hero-video {
    position: absolute;
    top: 73%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* cobre toda a área mantendo proporção */
    z-index: -2; /* fica atrás do overlay e conteúdo */
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* exemplo de overlay escuro */
    z-index: -1; /* fica acima do vídeo mas atrás do conteúdo */
}

.product-hero-content {
    position: relative;
    z-index: 1;
    color: white; /* ou outro que contraste com o vídeo */
    text-align: center;
    padding: 20px;
}

