/* ========================================
   Magnetic do Brasil - Colchões Magnéticos
   Tema: Preto com Dourado
   ======================================== */

/* Variables */
:root {
    --gold: #C9A962;
    --gold-light: #D4B872;
    --gold-dark: #B8954F;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --gray-dark: #444444;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.2);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    a, button {
        touch-action: manipulation;
    }

    /* Increase touch targets */
    .btn {
        min-height: 48px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links a {
        min-width: 48px;
        min-height: 48px;
    }

    /* Disable hover effects on touch */
    .feature-card:hover,
    .product-card:hover,
    .testimonial-card:hover,
    .video-card:hover,
    .dica-card:hover,
    .specs-card:hover,
    .spec-badge:hover {
        transform: none;
    }

    /* Enable active states instead */
    .feature-card:active,
    .product-card:active,
    .testimonial-card:active,
    .video-card:active,
    .dica-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold Text */
.gold-text {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

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

.btn-full {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: url('public/capa.png') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: -1;
}

/* Fix for mobile devices - background attachment fixed doesn't work well */
@media (max-width: 768px), (hover: none) {
    .hero::before {
        position: absolute;
        height: 100%;
    }

    .hero-overlay {
        position: absolute;
        height: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: 80px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--black);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    font-size: 32px;
    color: var(--black);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: 100px 0;
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.product-card .product-image {
    height: 100%;
    min-height: 350px;
}

.product-card .product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card {
    position: relative;
    background: var(--black-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 8px 16px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

.product-badge.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

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

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

.product-content {
    padding: 30px;
}

.product-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
}

.product-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.product-features li i {
    color: var(--gold);
    font-size: 12px;
}

.product-price {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    text-align: center;
}

.price-from {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

/* Product Lines */
.product-line {
    margin-bottom: 80px;
}

.product-line:last-child {
    margin-bottom: 0;
}

.product-line-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-bottom: 20px;
}

.product-line-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

/* Disabled Product Card (Coming Soon) */
.product-card.disabled {
    pointer-events: none;
    cursor: default;
}

.product-card.disabled:hover {
    transform: none;
    border-color: rgba(201, 169, 98, 0.1);
    box-shadow: none;
}

.product-card.disabled .product-image img {
    filter: grayscale(100%);
    opacity: 0.6;
}

.product-card.disabled .product-content {
    opacity: 0.7;
}

.product-card.disabled .product-title {
    color: var(--gray);
}

.product-card.disabled .product-features li {
    color: var(--gray);
}

.product-card.disabled .product-features li i {
    color: var(--gray);
}

.product-badge.coming-soon {
    background: var(--gray-dark);
    color: var(--white);
    border-color: var(--gray);
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid var(--gray);
    background: var(--gray-dark);
    color: var(--gray-light);
    cursor: not-allowed;
}

/* Product Gallery Carousel */
.product-gallery {
    margin-top: 40px;
}

.gallery-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 25px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 98, 0.2);
    transition: var(--transition);
}

.carousel-slide {
    cursor: pointer;
}

.carousel-slide:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 2px solid var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: var(--gray);
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* Carousel Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-slide img {
        height: 250px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-container {
        gap: 10px;
    }

    .gallery-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 200px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .product-gallery {
        margin-top: 30px;
    }
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--black-light);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow);
}

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

.about-stats {
    position: absolute;
    top: 30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-size: 20px;
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gold);
}

.about-feature p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--black-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 16px;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gold);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--black-light);
}

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

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    color: var(--black);
    font-size: 20px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold);
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-form h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gold);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--white);
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A962' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

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

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 80px 0 0;
    background: var(--black);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.footer-contact p i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-card .product-image {
        border-radius: 12px 12px 0 0;
        min-height: 250px;
    }

    .product-line-title {
        font-size: 26px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-secondary {
        right: 0;
    }

    .about-stats {
        right: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.99);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 9998;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15);
        text-align: center;
        color: var(--white);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link.active {
        color: var(--gold);
        background: rgba(201, 169, 98, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 9999;
    }

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

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

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

    /* Hero - Fix background on mobile */
    .hero::before {
        position: absolute;
        background-attachment: scroll;
    }

    .hero-overlay {
        position: absolute;
    }

    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 80%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 13px;
    }

    .hero-scroll {
        bottom: 20px;
    }

    .hero-scroll a {
        width: 40px;
        height: 40px;
    }

    /* Features */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Products */
    .products {
        padding: 60px 0;
    }

    .product-card {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .product-card .product-image {
        min-height: 250px;
        border-radius: 12px 12px 0 0;
    }

    .product-image {
        border-radius: 12px 12px 0 0;
    }

    .product-line {
        margin-bottom: 60px;
    }

    .product-line-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-grid {
        gap: 30px;
    }

    .about-images {
        display: none;
    }

    .about-image-main {
        display: none;
    }

    .about-stats {
        display: none;
    }

    .about-image-secondary {
        display: none;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-tag {
        display: inline-block;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
        font-size: 15px;
    }

    .about-features {
        margin: 25px 0;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
        background: rgba(201, 169, 98, 0.05);
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .about-feature:last-child {
        margin-bottom: 0;
    }

    .about-feature i {
        margin: 0 auto;
    }

    .about-feature div {
        width: 100%;
    }

    .about-feature h4 {
        margin-bottom: 8px;
    }

    .about-feature p {
        font-size: 13px;
    }

    .about-content .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

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

    .testimonial-text {
        font-size: 15px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-tag {
        display: inline-block;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
        background: rgba(201, 169, 98, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(201, 169, 98, 0.1);
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-item h4 {
        margin-bottom: 5px;
    }

    .contact-item p {
        line-height: 1.6;
    }

    .contact-social {
        text-align: center;
        margin-top: 20px;
    }

    .contact-social h4 {
        margin-bottom: 15px;
    }

    .contact-social .social-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .contact-form h3 {
        text-align: center;
    }

    .contact-form .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 11px;
        padding: 6px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .nav {
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        top: 70px;
        padding: 15px;
        max-height: calc(100vh - 70px);
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
    }

    .hero-content {
        padding: 90px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .hero-buttons .btn {
        width: 85%;
        max-width: 260px;
        padding: 12px 18px;
        font-size: 12px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
    }

    /* Features */
    .features {
        padding: 50px 0;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    /* Products */
    .products {
        padding: 50px 0;
    }

    .product-content {
        padding: 20px 15px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-features li {
        font-size: 13px;
    }

    .price-value {
        font-size: 24px;
    }

    .product-line-title {
        font-size: 20px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .product-line-title::after {
        width: 60px;
    }

    .product-card .product-image {
        min-height: 200px;
    }

    /* About */
    .about {
        padding: 50px 0;
    }

    .about-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .about-feature {
        padding: 15px;
        margin-bottom: 12px;
    }

    .about-feature i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .about-feature h4 {
        font-size: 14px;
    }

    .about-feature p {
        font-size: 12px;
    }

    .about-content .btn {
        max-width: 100%;
        padding: 12px 20px;
    }

    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .testimonial-author h4 {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    /* Contact */
    .contact {
        padding: 50px 0;
    }

    .contact-text {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-item h4 {
        font-size: 14px;
    }

    .contact-item p {
        font-size: 12px;
    }

    .contact-social h4 {
        font-size: 14px;
    }

    .contact-social .social-links a {
        width: 45px;
        height: 45px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .contact-form h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-links ul li a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================
   Dicas Page
   ======================================== */
.dicas-page {
    padding: 150px 0 100px;
    background: var(--black);
    min-height: 100vh;
}

/* Dicas Grid */
.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Dica Card */
.dica-card {
    position: relative;
    background: var(--black-light);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dica-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.dica-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.15);
}

.dica-card:hover .dica-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.dica-card:hover .dica-icon i {
    color: var(--black);
}

.dica-card:hover .dica-number {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
}

.dica-card:hover .dica-decoration {
    opacity: 1;
    transform: scale(1);
}

/* Dica Number */
.dica-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-secondary);
    font-size: 80px;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

/* Dica Icon */
.dica-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 2px solid var(--gold);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dica-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.4s ease;
}

/* Dica Content */
.dica-content h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.dica-card:hover .dica-content h3 {
    color: var(--gold);
}

.dica-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Dica Decoration */
.dica-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

/* Warning Box */
.dicas-warning {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 50px;
    animation: pulseWarning 3s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.2);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 193, 7, 0.1);
    }
}

.warning-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
}

.warning-icon i {
    font-size: 24px;
    color: #ffc107;
}

.dicas-warning p {
    font-size: 16px;
    color: var(--gray-light);
    margin: 0;
}

.dicas-warning strong {
    color: #ffc107;
}

/* CTA Box */
.dicas-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--black-light), var(--black-lighter));
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    overflow: hidden;
}

.dicas-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.dicas-cta h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.dicas-cta p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
    position: relative;
}

.dicas-cta .btn {
    position: relative;
}

/* Responsive Dicas */
@media (max-width: 1024px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dicas-page {
        padding: 120px 0 60px;
    }

    .dicas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dica-card {
        padding: 25px;
    }

    .dica-number {
        font-size: 60px;
    }

    .dica-icon {
        width: 60px;
        height: 60px;
    }

    .dica-icon i {
        font-size: 24px;
    }

    .dica-content h3 {
        font-size: 20px;
    }

    .dicas-warning {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .dicas-cta {
        padding: 40px 25px;
    }

    .dicas-cta h3 {
        font-size: 24px;
    }

    .dicas-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dicas-page {
        padding: 100px 0 40px;
    }

    .dica-card {
        padding: 20px;
    }

    .dica-number {
        font-size: 50px;
        top: 10px;
        right: 15px;
    }

    .dica-content h3 {
        font-size: 18px;
    }

    .dica-content p {
        font-size: 14px;
    }

    .dicas-cta h3 {
        font-size: 20px;
    }

    .dicas-cta p {
        font-size: 15px;
    }
}

/* ========================================
   Especificações Section
   ======================================== */
.especificacoes-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.especificacoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Badges de Destaque */
.specs-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.spec-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--black-lighter), var(--black-light));
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    transition: all 0.4s ease;
}

.spec-badge:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
}

.badge-text span {
    font-size: 14px;
    color: var(--gray-light);
}

/* Animação Float */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Animação Pulse */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(201, 169, 98, 0.2); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Container das Especificações */
.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Cards de Especificações */
.specs-card {
    background: linear-gradient(145deg, var(--black-light), var(--black-lighter));
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.specs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.specs-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.15);
}

.specs-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.specs-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--black);
    flex-shrink: 0;
}

.specs-card-header h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.optional-tag {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    font-family: var(--font-primary);
    font-weight: 500;
}

/* Lista de Especificações */
.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs-list.compact {
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(var(--delay) * 0.1s);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.spec-item:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateX(10px);
}

.spec-check {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.spec-text {
    font-size: 15px;
    color: var(--gray-light);
    transition: color 0.3s ease;
}

.spec-item:hover .spec-text {
    color: var(--white);
}

/* Lado direito com cards menores */
.specs-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.specs-side .specs-card {
    flex: none;
}

.specs-side .specs-list.compact .spec-item {
    padding: 10px 12px;
}

.specs-side .spec-text {
    font-size: 14px;
}

/* CTA Especificações */
.specs-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.specs-cta p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.specs-cta .btn i {
    margin-right: 10px;
}

/* Responsive Especificações */
@media (max-width: 1024px) {
    .specs-container {
        grid-template-columns: 1fr;
    }

    .specs-badges {
        gap: 20px;
    }

    .spec-badge {
        padding: 15px 20px;
    }

    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .badge-text strong {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .especificacoes-section {
        padding: 60px 0;
    }

    .specs-badges {
        flex-direction: column;
        align-items: center;
    }

    .spec-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .specs-card {
        padding: 25px;
    }

    .specs-card-header h3 {
        font-size: 18px;
    }

    .specs-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .spec-item {
        padding: 10px 12px;
    }

    .spec-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .specs-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .optional-tag {
        margin-left: 0;
        margin-top: 5px;
    }

    .specs-cta {
        padding: 30px 20px;
    }

    .specs-cta p {
        font-size: 16px;
    }
}

/* ========================================
   Benefícios Page
   ======================================== */
.beneficios-page {
    padding: 150px 0 100px;
    background: var(--black);
    min-height: 100vh;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Video Card */
.video-card {
    background: var(--black-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.15);
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--black);
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-wrapper:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    background: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.play-button i {
    font-size: 40px;
    color: var(--white);
}

/* YouTube Thumbnail */
.youtube-thumbnail {
    cursor: pointer;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-thumbnail:hover img {
    transform: scale(1.05);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        right: 5px;
        font-size: 35px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .video-modal-close {
        top: -40px;
        font-size: 30px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 24px;
    }
}

/* Video Content */
.video-content {
    padding: 30px;
}

.video-content h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.video-card:hover .video-content h3 {
    color: var(--gold-light);
}

.video-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Placeholder for coming soon videos */
.video-card.coming-soon {
    opacity: 0.7;
}

.video-card.coming-soon:hover {
    transform: none;
    border-color: rgba(201, 169, 98, 0.1);
    box-shadow: none;
}

.video-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    height: 0;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--black-lighter), var(--black));
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.placeholder-content i {
    font-size: 50px;
    color: var(--gray-dark);
    margin-bottom: 15px;
    display: block;
}

.placeholder-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Benefícios CTA */
.beneficios-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--black-light), var(--black-lighter));
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    overflow: hidden;
}

.beneficios-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.beneficios-cta h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.beneficios-cta p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
    position: relative;
}

.beneficios-cta .btn {
    position: relative;
}

/* Responsive Benefícios */
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .beneficios-page {
        padding: 120px 0 60px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-content {
        padding: 25px;
    }

    .video-content h3 {
        font-size: 20px;
    }

    .beneficios-cta {
        padding: 40px 25px;
    }

    .beneficios-cta h3 {
        font-size: 24px;
    }

    .beneficios-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .beneficios-page {
        padding: 100px 0 40px;
    }

    .video-content {
        padding: 20px;
    }

    .video-content h3 {
        font-size: 18px;
    }

    .video-content p {
        font-size: 14px;
    }

    .video-play-overlay i {
        font-size: 40px;
    }

    .placeholder-content i {
        font-size: 40px;
    }

    .placeholder-content span {
        font-size: 14px;
    }

    .beneficios-cta h3 {
        font-size: 20px;
    }

    .beneficios-cta p {
        font-size: 15px;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* WhatsApp Modal */
.whatsapp-modal {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.whatsapp-modal.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.whatsapp-modal-content {
    background: linear-gradient(145deg, var(--black-light), var(--black));
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(201, 169, 98, 0.3);
    animation: slideUp 0.3s ease;
}

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

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

.whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-modal-close:hover {
    color: var(--gold);
}

.whatsapp-modal-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.whatsapp-modal-content h3 i {
    margin-right: 10px;
}

.whatsapp-modal-content > p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--black-lighter);
    border: 1px solid var(--gray-dark);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-option:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    transform: translateX(5px);
}

.whatsapp-option-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-option-icon i {
    font-size: 24px;
    color: white;
}

.whatsapp-option-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-option-info strong {
    color: var(--white);
    font-size: 1rem;
}

.whatsapp-option-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

.whatsapp-option-info .whatsapp-phone {
    color: #25D366;
    font-weight: 500;
}

@media (max-width: 480px) {
    .whatsapp-modal-content {
        padding: 30px 20px;
    }

    .whatsapp-modal-content h3 {
        font-size: 1.5rem;
    }

    .whatsapp-option {
        padding: 15px;
    }

    .whatsapp-option-icon {
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-tag {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-content {
        padding: 15px 12px;
    }

    .price-value {
        font-size: 22px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 20px 12px;
    }

    .testimonial-card {
        padding: 18px 12px;
    }

    .footer-grid {
        gap: 25px;
    }

    /* Specs */
    .specs-card {
        padding: 20px 15px;
    }

    .specs-card-header h3 {
        font-size: 16px;
    }

    .specs-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .spec-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .spec-text {
        font-size: 13px;
    }

    .spec-badge {
        padding: 12px 15px;
        gap: 10px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .badge-text strong {
        font-size: 14px;
    }

    .badge-text span {
        font-size: 12px;
    }

    /* Dicas */
    .dica-card {
        padding: 18px 15px;
    }

    .dica-number {
        font-size: 40px;
    }

    .dica-icon {
        width: 50px;
        height: 50px;
    }

    .dica-icon i {
        font-size: 20px;
    }

    .dica-content h3 {
        font-size: 16px;
    }

    .dica-content p {
        font-size: 13px;
    }

    /* Videos */
    .video-content {
        padding: 15px;
    }

    .video-content h3 {
        font-size: 16px;
    }

    .video-content p {
        font-size: 13px;
    }

    .play-button {
        width: 45px;
        height: 45px;
    }

    .play-button i {
        font-size: 20px;
    }

    /* WhatsApp Modal */
    .whatsapp-modal-content {
        padding: 25px 15px;
        width: 95%;
    }

    .whatsapp-modal-content h3 {
        font-size: 1.3rem;
    }

    .whatsapp-option {
        padding: 12px;
        gap: 10px;
    }

    .whatsapp-option-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-option-icon i {
        font-size: 20px;
    }

    .whatsapp-option-info strong {
        font-size: 0.9rem;
    }

    .whatsapp-option-info span {
        font-size: 0.75rem;
    }
}

/* ========================================
   Lightbox Modal
   ======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: #000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 32px;
    }
}
