/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-slide-in {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    transition: padding 0.3s ease;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 2.5rem;
    width: auto;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: left 0.3s ease;
}

.nav a:hover::before {
    left: 0;
}

.nav a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #374151;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Button Styles with Modern Effects */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-white {
    background: white;
    color: #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn.btn-outline.btn-blue {
    color: #2563eb;
    border-color: #2563eb;
}

.btn.btn-outline.btn-blue:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* Hero Section with Dynamic Effects */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    animation: scaleIn 1.5s ease-out;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-in-out;
}

.hero:hover .hero-bg img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.9), rgba(55, 65, 81, 0.9));
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    width: 100%;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-text {
    max-width: 4xl;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.highlight {
    display: block;
    color: #93c5fd;
    animation: pulse 2s ease-in-out infinite;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
    max-width: 2xl;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Section Headers with Animation */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 3xl;
    margin: 0 auto;
}

/* Produtos Section with Staggered Animation */
.produtos {
    padding: 5rem 0;
    background: white;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.produto-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.produto-card:hover::before {
    left: 100%;
}

.produto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.produto-image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1) rotate(1deg);
}

.produto-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.produto-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.produto-icon {
    color: #2563eb;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-icon {
    transform: scale(1.2) rotate(5deg);
}

.produto-icon i {
    font-size: 1.5rem;
}

.produto-content h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.produto-card:hover .produto-content h3 {
    color: #2563eb;
}

.produto-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.produto-content .btn {
    width: 100%;
    justify-content: center;
    border-color: #2563eb;
    color: #2563eb;
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, #f3f4f6);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.servico-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.servico-icon {
    color: #2563eb;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.servico-card:hover .servico-icon {
    transform: scale(1.2) rotateY(180deg);
}

.servico-icon i {
    font-size: 2rem;
}

.servico-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.servico-card:hover h3 {
    color: #2563eb;
}

.servico-card p {
    color: #6b7280;
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text {
    animation: fadeInLeft 1s ease-out;
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    animation: scaleIn 0.8s ease-out;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
    color: #1d4ed8;
}

.stat-label {
    color: #6b7280;
}

.sobre-diferenciais {
    animation: fadeInRight 1s ease-out;
}

.sobre-diferenciais h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.diferenciais-list {
    margin-bottom: 2rem;
}

.diferencial {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    animation: fadeInRight 0.8s ease-out;
}

.diferencial:hover {
    transform: translateX(5px);
}

.diferencial i {
    color: #22c55e;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.diferencial:hover i {
    transform: scale(1.2) rotate(360deg);
}

.diferencial span {
    color: #374151;
}

.certificacoes {
    display: flex;
    gap: 1rem;
}

.certificacao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.certificacao:hover {
    transform: scale(1.05);
}

.certificacao i {
    color: #2563eb;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.certificacao span {
    color: #374151;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #3b82f6);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 2xl;
    margin-left: auto;
    margin-right: auto;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, #f3f4f6);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contato-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.8s ease;
}

.contato-card:hover::before {
    left: 100%;
}

.contato-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contato-icon {
    color: #2563eb;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.contato-card:hover .contato-icon {
    transform: scale(1.2) rotateY(360deg);
}

.contato-icon i {
    font-size: 2rem;
}

.contato-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contato-card:hover h3 {
    color: #2563eb;
}

.contato-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.footer-section h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #d1d5db;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Product Page Styles */
.product-header {
    padding: 1.5rem 0;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.back-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
    transform: translateX(-3px);
}

.product-hero {
    padding: 5rem 0;
    background: white;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-badge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.product-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.product-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.product-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.product-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

.product-image:hover img {
    transform: scale(1.02) rotate(0.5deg);
}

.product-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, #f3f4f6);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2563eb, #3b82f6, #2563eb);
    border-radius: 1rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-card-header i {
    color: #2563eb;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.detail-card:hover .detail-card-header i {
    transform: scale(1.2) rotate(10deg);
}

.detail-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: bold;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.detail-list li:hover {
    transform: translateX(5px);
}

.detail-list li i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.detail-list li:hover i {
    transform: scale(1.2) rotate(360deg);
}

.detail-list li span {
    color: #374151;
    font-size: 0.875rem;
}

.product-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #3b82f6);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: float 8s ease-in-out infinite;
}

.product-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.product-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 2xl;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.product-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-content {
        padding: 0.4rem 0;
    }
    
    .logo img {
        height: 2rem;
    }
    
    .hero {
        margin-top: 50px;
    }
    
    .product-header {
        margin-top: 50px;
        padding: 1rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta-buttons {
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .product-cta-buttons {
        flex-direction: row;
    }
}

/* Scroll-triggered animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
