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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Header Elegante */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-item:hover {
    color: #ff6b35;
}

.contact-text {
    display: inline;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.05);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
}

.hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    text-shadow: 0 2px 10px rgba(44, 62, 80, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefícios removidos para design mais limpo */

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.social-proof {
    display: flex;
    gap: 30px;
    align-items: center;
}

.customers, .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: #fbbf24;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    text-align: center;
    perspective: 1000px;
}

.hero-product-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateY(2deg); }
    50% { transform: translateY(-5px) rotateY(0deg); }
    75% { transform: translateY(-15px) rotateY(-2deg); }
}

.hero-product-img:hover {
    transform: translateY(-20px) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Gallery Section */
.product-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 250px;
}

.gallery-item.main-image {
    grid-column: span 2;
    min-height: 400px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    background: #ff6b35;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.feature-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.feature-card li {
    padding: 8px 0;
    color: #2d3748;
    position: relative;
    padding-left: 25px;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #ffffff;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Cards - Apple Style */
.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

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

.product-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Hero Card - Líder de Vendas */
.product-card.hero-card {
    border: 4px solid #ff6b35;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
    transform: scale(1.08);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 30px 70px rgba(255, 107, 53, 0.6);
    }
}

.hero-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
    }
}

.hero-card .product-name {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.hero-card .product-description {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    margin-bottom: 5px;
}

.hero-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
}

/* Responsive adjustments for hero card */
@media (max-width: 768px) {
    .product-card.hero-card {
        transform: scale(1.03);
        margin: 20px 0;
    }
    
    .hero-card .product-name {
        font-size: 1.6rem;
    }
    
    .hero-card .price {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

.product-card.featured:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.product-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Sub-cards Clean Style - Without Icons */
.spec-category {
    margin: 25px 0;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    letter-spacing: 0.02em;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.spec-subcards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.spec-subcard {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 45px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.spec-subcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(229, 90, 43, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-subcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.12);
    border-color: #ff6b35;
}

.spec-subcard:hover::before {
    opacity: 1;
}

.spec-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 20px;
    box-sizing: border-box;
}

.spec-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.3;
    text-align: left;
    flex: 1;
    letter-spacing: 0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    text-align: right;
    flex-shrink: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Responsive adjustments for sub-cards */
@media (max-width: 768px) {
    .spec-subcards {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .spec-subcard {
        padding: 10px 14px;
        min-height: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .spec-content {
        gap: 10px;
        width: 100%;
        height: 100%;
        min-height: 18px;
    }
    
    .spec-label {
        font-size: 0.8rem;
        text-align: left;
        line-height: 1.3;
    }
    
    .spec-value {
        font-size: 0.85rem;
        text-align: right;
        line-height: 1.3;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
}

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


.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #4a5568;
    font-weight: 500;
}

.spec-value {
    color: #2d3748;
    font-weight: 600;
}

.btn-product {
    flex: 1;
    padding: 15px 30px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #2d3748;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.btn-product:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.btn-product.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border-color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.95rem;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

/* Ícone WhatsApp clicável */
.btn-whatsapp-icon {
    background: #25d366;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-whatsapp-icon:hover::before {
    transform: translateX(100%);
}

.btn-whatsapp-icon:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-icon:active {
    transform: translateY(-1px) scale(1.05);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

/* Responsive card actions */
@media (max-width: 768px) {
    .card-actions {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    
    .btn-whatsapp-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.btn-product.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Garantir que o texto dos botões seja legível */
.btn-product, .btn-whatsapp {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}



/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #ff6b35;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
    color: #f39c12;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.author strong {
    color: #2d3748;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.author span {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-badge i {
    color: #ffd700;
    font-size: 1.1rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 25px auto;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}


.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.1rem;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.form-header {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 20px 25px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-form {
    padding: 25px;
}

.form-section {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.form-section h4 i {
    color: #ff6b35;
    font-size: 1.2rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit span {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-submit small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-security i {
    color: #10b981;
    font-size: 1rem;
}


.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 10px;
    border: 1px solid #e0f2fe;
}

.form-note i {
    color: #0ea5e9;
    font-size: 1.1rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-header {
    text-align: center;
    margin-bottom: 25px;
}

.info-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card.primary {
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.info-card.whatsapp {
    border: 2px solid rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.contact-guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-item i {
    color: #10b981;
    font-size: 1rem;
}

.guarantee-item i.fa-shield-alt {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Modern Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.98);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    background: white;
}

.method-icon {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: scale(1.05);
}

.method-content {
    flex: 1;
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.method-number,
.method-desc,
.method-email {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.method-action:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Modern Benefits Grid */
.contact-benefits {
    margin-top: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    padding: 4px;
}

.benefit-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    background: white;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.info-content p {
    color: #6b7280;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e55a2b;
}

.contact-link.whatsapp-link {
    color: #25d366;
}

.contact-link.whatsapp-link:hover {
    color: #128c7e;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.footer-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-info p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.contact-item i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    padding-top: 30px;
    color: #9ca3af;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.footer-legal {
    text-align: left;
}

.footer-legal p {
    margin: 5px 0;
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-legal strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-dev {
    text-align: right;
}

.footer-dev p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-dev a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.footer-links {
    text-align: center;
    margin: 0;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.footer-links span {
    color: #6b7280;
    margin: 0 10px;
}

.copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6b7280;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 15px;
    text-align: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-accept, .btn-reject, .btn-info {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-accept {
    background: #ff6b35;
    color: white;
}

.btn-accept:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-reject {
    background: #6b7280;
    color: white;
}

.btn-reject:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.btn-info {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-info:hover {
    background: #ff6b35;
    color: white;
}

/* LGPD Notice */
.lgpd-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 15px;
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.lgpd-notice.show {
    transform: translateY(0);
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lgpd-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.lgpd-text i {
    font-size: 1.2rem;
    color: #ffd700;
}

.lgpd-text a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.lgpd-text a:hover {
    text-decoration: underline;
}

.btn-close-lgpd {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-close-lgpd:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Header */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .header-contact {
        gap: 20px;
    }
    
    .contact-item {
        gap: 5px;
        font-size: 0.9rem;
    }
    
    .contact-text {
        display: none;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover i {
        background: #ff6b35;
        color: white;
        transform: scale(1.1);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal,
    .footer-dev {
        text-align: center;
    }
    
    .footer-links {
        order: -1;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item.main-image {
        grid-column: span 1;
        min-height: 300px;
    }
    
    .gallery-item {
        min-height: 200px;
    }
}

/* Modern Gallery Styles */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-nav-btn {
    background: #ff6b35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.gallery-nav-btn:hover {
    background: #e55a2b;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.gallery-main {
    margin-bottom: 30px;
}

.gallery-display {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.main-gallery-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.gallery-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.thumbnail {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.thumbnail span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.thumbnail.active {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
}

.thumbnail.active span {
    color: #ff6b35;
    font-weight: 700;
}

/* Tablet and Small Laptop Breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .comparison-cards {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-card.hero-card {
        transform: scale(1.02);
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .main-gallery-img {
        height: 300px;
    }
    
    .gallery-info {
        padding: 30px 20px 20px;
    }
    
    .gallery-info h3 {
        font-size: 1.4rem;
    }
    
    .gallery-info p {
        font-size: 1rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .thumbnail span {
        font-size: 0.7rem;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

