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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1a1a1a;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: #840219;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3ce80c, #0c8a03);
    /* background: linear-gradient(135deg, #ff002d, #c40a0a); */
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(208, 0, 0, 0.3);
}

.btn-primary-2 {
    background: none;
    border: 1px solid #fff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary-2:hover {
    border: 1px solid #c40a0a;
    color: #c40a0a;
    transform: translateY(-2px);

}

.btn-primary-3 {
    background: none;
    border: 1px solid #fff;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3ce80c, #0c8a03);

    /* background: linear-gradient(135deg, #ff002d, #e20d0d); */
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(208, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #840219;
    color: #840219;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content-2 {
    width: 100%;
    text-align: left;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


.hero-title-2 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}


.highlight {
    background: linear-gradient(135deg, #f3032f, #fd0707);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.highlight-2 {
    background: linear-gradient(135deg, #3ce80c, #0c8a03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.feature-item::before {
    content: "✓";
    color: #840219;
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-cta {
    text-align: left;
}

.cta-note {
    margin-top: 1rem;
    color: #888888;
    font-size: 0.9rem;
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
}

.mockup-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #333333;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666666;
}

.mockup-dots span:first-child {
    background: #840219;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #840219;
}

.mockup-title {
    color: #ffffff;
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #840219;
}

.status-card.offline {
    border-left-color: #ff3419;
}
.status-card.offline .status-indicator {
    background: #ff3419;
}

.status-card.offline .response-time {
    color: #ff3419;
}

.status-card.warning {
    border-left-color: #ffa500;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #840219;
}

.status-card.warning .status-indicator {
    background: #ffa500;
}

.status-info {
    flex: 1;
}

.status-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.status-info p {
    color: #888888;
    font-size: 0.8rem;
}

.response-time {
    color: #840219;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-card.warning .response-time {
    color: #ffa500;
}

.chart-area {
    height: 60px;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(208, 10, 0, 0.3) 20%, 
        rgba(231, 56, 8, 0.5) 40%, 
        rgba(208, 42, 0, 0.3) 60%, 
        rgba(255, 165, 0, 0.3) 80%, 
        rgba(208, 0, 0, 0.4) 100%);
    border-radius: 4px 4px 0 0;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.section-header-price {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

    .section-header-price h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header-price p {
    font-size: 1.2rem;
    color: #cccccc;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #840219;
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(241, 4, 4, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Alert Types Section */
.alert-types {
    padding: 0;
    background: #0f0f0f;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.alert-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #333333;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-5px);
    border-color: #840219;
    box-shadow: 0 15px 40px rgba(208, 0, 0, 0.2);
}

.alert-card.featured {
    border-color: #840219;
    transform: scale(1.05);
}

.alert-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.alert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 4, 4, 0.1);
    border-radius: 50%;
}

.alert-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.alert-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.alert-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e0052d, #fa0a0a);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.img-dash {
    max-width: 480px;
}

/* Pricing Section */
.pricing {
    padding-top: 6rem;
    padding-bottom: 0rem;
    background: #0a0a0a;
}
        
.pricing-2 {
    padding: 4rem 0;

}

.pricing-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #840219 #1a1a1a;
    position: relative;
}

/* Estilização da scrollbar para navegadores webkit */
.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: #840219;
    border-radius: 4px;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: #ff002d;
}

/* Container para os botões de navegação mobile */
.pricing-nav-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.pricing-nav-btn {
    background: #1a1a1a;
    border: 2px solid #840219;
    color: #840219;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.pricing-nav-btn:hover {
    background: #840219;
    color: white;
    transform: scale(1.1);
}

.pricing-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-nav-btn:disabled:hover {
    background: #1a1a1a;
    color: #840219;
    transform: scale(1);
}

/* Indicador de card atual */
.pricing-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.pricing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-dot.active {
    background: #840219;
    width: 24px;
    border-radius: 4px;
}

.pricing-card {
    min-width: 320px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #840219;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #840219;
    box-shadow: 0 15px 40px rgba(255, 4, 4, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #840219, #ba1010);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3ce80c;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.pricing-period {
    color: #888888;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-features li::before {
    content: "✓";
    color: #840219;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 2, 25, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(132, 2, 25, 0.4);
    border-color: #840219;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #2a2a2a;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(132, 2, 25, 0.9) 0%, rgba(132, 2, 25, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .view-icon {
    transform: scale(1);
}

.gallery-info {
    padding: 1.5rem;
    background: #1a1a1a;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.gallery-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-badge {
    background: rgba(132, 2, 25, 0.2);
    color: #ff002d;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(132, 2, 25, 0.3);
}

.gallery-badge.new {
    background: rgba(60, 232, 12, 0.2);
    color: #3ce80c;
    border-color: rgba(60, 232, 12, 0.3);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-caption {
    position: absolute;
    bottom: -65px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: #cccccc;
    font-size: 1rem;
}

/* Placeholder styles for demo images */
.placeholder-dashboard {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #840219;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #0f0f0f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #840219;
    box-shadow: 0 10px 30px rgba(249, 3, 3, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #840219;
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #840219;
    font-weight: 600;
}

.testimonial-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #888888;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #cccccc;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #840219;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 1rem;
    text-align: center;
    color: #888888;
}

.margin-top-l {
    margin-top: 35px;
}

.flex {
  display: flex; align-items: flex-start;
}
.flex .wrap {flex-wrap: wrap;}
.flex .between {justify-content: space-between;}
.flex .center {justify-content: center;}
.flex .end {justify-content: flex-end;}
.flex .middle {align-items: center;}
.flex .bottom {align-items: flex-end;}
.flex .stretch {align-items: stretch;}
.flex-1 {flex: 1;}
.flex-2 {flex: 2;}
.flex-3 {flex: 3;}
.flex-4 {flex: 4;}
.flex .column { flex-direction: column;}
.flex .row { flex-direction: row;}

/* Garantia Section */
.garantia {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.garantia::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132, 2, 25, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.garantia .container {
    position: relative;
    z-index: 1;
}

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

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

.garantia-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.garantia-badge {
    flex: 0 0 auto;
    text-align: center;
}

.garantia-badge img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.garantia-badge img:hover {
    transform: scale(1.05);
}

.garantia-text {
    flex: 1;
}

.garantia-text h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.garantia-text p {
    font-size: 1.1rem;
    color: #cfcece;
    line-height: 1.8;
    margin-bottom: 20px;
}

.garantia-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.garantia-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #cfcece;
}

.garantia-list li::before {
    content: '✓';
    color: #840219;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.garantia-highlight {
    background: linear-gradient(135deg, #840219 0%, #a61e3a 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.garantia-highlight p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.04, 1.04);
    }
    100% {
        transform: scale(1, 1);
    }
    }
    .button-animate {
    animation: zoominoutsinglefeatured 1s infinite;
    }


.mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Garantia Mobile Styles */
    .garantia {
        padding: 60px 0;
    }
    
    .garantia .section-header h2 {
        font-size: 2rem;
    }
    
    .garantia-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .garantia-badge img {
        width: 250px;
    }
    
    .garantia-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .garantia-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .garantia-list {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .garantia-highlight {
        padding: 15px 20px;
    }
    
    .garantia-highlight p {
        font-size: 1rem;
    }
    
    /* Garantia - Ajuste adicional para telas muito pequenas */
    @media (max-width: 480px) {
        .garantia-content {
            padding: 30px 15px;
        }
        
        .garantia-badge img {
            width: 120px;
        }
        
        .garantia-text h3 {
            font-size: 1.3rem;
        }
        
        .garantia-list li {
            font-size: 0.9rem;
        }
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-caption {
        bottom: -40px;
    }

    .lightbox-caption h3 {
        font-size: 1.2rem;
    }

    .lightbox-caption p {
        font-size: 0.9rem;
    }
    .no-mobile {
        display: none !important;
    }
    .btn-primary {
        text-align: center;
    }

    .mobile {
        display: inline;
    }
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav-brand {
        font-size: 1rem;
    }

    /* Estilos específicos para pricing no mobile */
    .pricing-grid {
        scroll-snap-type: x mandatory;
        padding: 20px 0;
    }

    .pricing-card {
        scroll-snap-align: center;
        min-width: 85vw;
    }

    .pricing-nav-mobile {
        display: flex;
    }

    .pricing-dots {
        display: flex;
    }

    /* Esconde a scrollbar no mobile para uma aparência mais limpa */
    .pricing-grid {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
}
ul.pricing-features {
    min-height: 366px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

nav a {
    list-style: none;
    text-decoration: none; /* no underline */
}

/* Parceiros Section */
#parceiros {
    padding: 2rem 0;
    background: #0f0f0f;
    overflow: hidden;
}

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

#parceiros .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#parceiros .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

#parceiros .section-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

#parceiros .partners-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    max-height: 300px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: #840219 #1a1a1a;
}

/* Estilização da scrollbar para navegadores webkit */
#parceiros .partners-grid::-webkit-scrollbar {
    height: 8px;
}

#parceiros .partners-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

#parceiros .partners-grid::-webkit-scrollbar-thumb {
    background: #840219;
    border-radius: 4px;
}

#parceiros .partners-grid::-webkit-scrollbar-thumb:hover {
    background: #a60220;
}

#parceiros .card {
    background: #cacaca;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 160px;
    height: 100px;
}

#parceiros .card:hover {
    transform: translateY(-5px);
    border-color: #840219;
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.1);
}

#parceiros .card img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

@media (max-width: 768px) {
    #parceiros .partners-grid {
        gap: 1rem;
        max-height: 200px;
    }

    #parceiros .card {
        min-width: 140px;
        height: 80px;
        padding: 1rem;
    }

    #parceiros .card img {
        max-width: 100px;
        max-height: 50px;
    }
}
