/* Variáveis de cores */
:root {
    --primary: #031a9c;
    --primary-light: #0a2ecc;
    --secondary: #2e86de;
    --accent: #4c9aff;
    --success: #28a745;
    --light-bg: #f0f5ff;
    --card-bg: #ffffff;
    --text: #1a1a2e;
    --light-text: #5a5a7a;
    --border: #d1d9f0;
    --shadow: rgba(3, 26, 156, 0.1);
    --shadow-hover: rgba(3, 26, 156, 0.2);

    /* Variáveis RGB para compatibilidade com main.css */
    --accent-color-rgb: 239, 102, 3;
    --nav-dropdown-color-rgb: 6, 6, 6;

    /* Cor do tema Swiper - usando a cor primária azul */
    --swiper-theme-color: #031a9c;

    /* Sobrescrever cores do Bootstrap para usar o tema azul */
    --bs-primary: #031a9c;
    --bs-danger: #031a9c;
    --bs-form-invalid-color: #031a9c;
    --bs-form-invalid-border-color: #031a9c;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Navmenu - Desktop (Copied from main.css) */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
        margin-left: 5px;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 8px 20px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    /* Active/Hover state for menu items */
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        background-color: var(--nav-hover-color);
    }

    /* Dropdown styles (Copied from main.css) */
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 15px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
        margin-left: 0;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
        line-height: 0;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active,
    .navmenu .dropdown ul .active:focus {
        background-color: var(--nav-dropdown-hover-color);
        color: var(--contrast-color);
    }

    .navmenu .dropdown:hover>ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: 100%;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        top: 0;
    }
}

/* Navmenu - Mobile (Copied from main.css) */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 995;
    }

    .navmenu ul {
        display: none;
        position: fixed;
        inset: 0;
        left: 0;
        right: 0;
        background: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        padding: 20px 20px;
        margin: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(var(--nav-dropdown-color-rgb), 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i {
        background-color: var(--nav-dropdown-hover-color);
        color: var(--contrast-color);
    }

    .navmenu li {
        position: relative;
    }

    /* Active/Hover state for mobile menu items */
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    /* Mobile dropdown styles */
    .navmenu .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: 0.5s;
        background-color: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
    }

    .navmenu .dropdown ul a i {
        text-align: center;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active,
    .navmenu .dropdown ul .active:focus {
        background-color: var(--nav-dropdown-hover-color);
        color: var(--contrast-color);
    }

    /* State when mobile nav is active */
    .navmenu .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    /* Style for the active mobile toggle button */
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/* Main Content */
.main {
    padding-top: 100px;
}

/* Logo e Título */
.logo {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.logo i {
    margin-right: 15px;
    color: var(--accent);
}

h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Top Dark Section (Full width background below header) - Positioning with negative margin */
.top-dark-section {
    background-color: #2a2c39 !important;
    /* Force Dark background color */
    color: #ffffff !important;
    /* Force white text color for direct children */
    text-align: center;
    width: 100%;
    margin-top: -100px;
    /* Pull up by header height */
    display: flex;
    /* Use Flexbox */
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    /* Center content horizontally */
    justify-content: center;
    /* Center content vertically */
    position: relative;
    /* Needed for positioning the wave SVG */
    overflow: hidden;
    /* Ensure nothing spills out of the section */
    min-height: 150vh;
    /* Increased minimum height again */
    padding: 30px 0;
    /* Adjust vertical padding */
}

/* Force all text within the dark section to be white */
.top-dark-section * {
    color: #ffffff !important;
}

.top-dark-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px 50px 20px;
    /* Further reduced top padding to move text up */
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    fill: #2a2c39;
    z-index: 1;
}

/* Adjust spacing for the section immediately following the dark section - Resetting this rule if it exists */
/* Assuming this rule was to pull the next container up into the wave */
.container:nth-of-type(2) {
    margin-top: 0;
    /* Reset margin-top */
    position: static;
    /* Reset position */
    z-index: auto;
    /* Reset z-index */
}

/* App Description - Enhanced shadow */
.app-description {
    max-width: 900px;
    margin: 40px auto 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 100px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.app-description:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 0 120px rgba(0, 0, 0, 0.08);
}

.app-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
}

/* Carousel Section */
.carousel-section {
    margin: 60px 0;
    padding: 40px 0;
    background: #f8f9fa;
    /* Added a subtle background for separation */
}

/* Modernized Carousel Container */
.carousel-container {
    max-width: 900px;
    /* Limit width for better presentation */
    margin: 0 auto;
    border-radius: 15px;
    /* Rounded corners for the main container */
    overflow: hidden;
    /* Ensure content is clipped */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    /* White background inside the container */
    padding: 0;
    /* Remove internal padding */
}

.carousel-container:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Ensure inner elements respect container rounded corners */
.carousel-container .carousel,
.carousel-container .carousel-inner {
    border-radius: 15px;
    /* Apply to inner container as well */
    overflow: hidden;
    /* Ensure clipping */
}

/* Style Carousel Items and Images */
.carousel-item {
    height: 0;
    padding-bottom: 45%;
    /* Adjusted aspect ratio slightly */
    position: relative;
    overflow: hidden;
    /* Ensure images within item are clipped and item has rounded corners */
    border-radius: 15px;
    /* Apply rounded corners to the carousel item */
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure images cover the area */
    border-radius: 15px;
    /* Apply rounded corners to the image */
}

/* Carousel Caption */
.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    /* Gradient from transparent to black */
    padding: 140px 20px 20px 20px;
    /* Further increased top padding to make gradient taller */
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    /* Remove vertical translation as padding/gradient handles positioning */
    text-align: center;
    /* Center text */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to the bottom */
    align-items: center;
}

.carousel-caption h3,
.carousel-caption p {
    color: #ffffff !important;
    /* Ensure white text */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    /* Adjust spacing */
    z-index: 2;
    /* Ensure text is above the gradient */
    position: relative;
}

.carousel-caption h3 {
    font-size: 2.2rem;
    /* Increased font size for heading */
}

.carousel-caption p {
    font-size: 1.3rem;
    /* Increased font size for paragraph */
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    /* Make controls slimmer */
    opacity: 0.7;
    /* Subtle opacity */
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    /* Remove default icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white background */
    color: #000;
    /* Black icon color */
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-control-prev-icon::after {
    content: '\f104';
    /* Font Awesome left angle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-control-next-icon::after {
    content: '\f105';
    /* Font Awesome right angle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.8);
    /* More visible on hover */
    color: #000;
}

/* Indicators */
.carousel-indicators {
    bottom: 20px;
    /* Position indicators above caption */
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white indicators */
    border: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #ffffff;
    /* Solid white for active indicator */
    transform: scale(1.2);
}

/* Price Cards - Enhanced shadow and modern design */
.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.pricing-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.price-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0;
    flex: 1 1 300px;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 150px rgba(0, 0, 0, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.card-badge.recommended {
    background: var(--success);
}

.card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 18px 12px;
    /* Reduzindo padding um pouco mais */
    text-align: center;
    position: relative;
}

.card-header h3 {
    font-size: 1.3rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    font-weight: 700;
    margin-bottom: 8px;
    /* Reduzindo margin um pouco mais */
    color: white;
}

.card-price {
    font-size: 2rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    font-weight: 800;
    color: white;
    margin: 6px 0;
    /* Reduzindo margin um pouco mais */
}

.card-price small {
    font-size: 0.85rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    font-weight: 400;
    opacity: 0.9;
}

.card-body {
    padding: 20px 15px;
    /* Reduzindo padding um pouco mais */
    background: white;
}

.features {
    list-style: none;
    margin-bottom: 18px;
    /* Reduzindo margin um pouco mais */
}

.features li {
    padding: 8px 0;
    /* Reduzindo padding um pouco mais */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text);
    font-size: 0.85rem;
    /* Reduzindo tamanho da fonte um pouco mais */
}

.features li i {
    margin-right: 8px;
    /* Reduzindo margin um pouco mais */
    font-size: 1.1rem;
    /* Reduzindo tamanho da fonte um pouco mais */
}

.features li .fa-check {
    color: var(--success);
}

.features li .fa-times {
    color: #dc3545;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(3, 26, 156, .4);
}

/* Comparison Table - Enhanced shadow and modern design */
.comparison-section {
    margin: 40px 0 80px 0;
    /* Espaço maior para destacar a sombra */
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 1.7rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    color: var(--primary);
    margin-bottom: 10px;
    /* Reduzindo margin */
}

.section-title p {
    font-size: 0.95rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    color: var(--light-text);
}

.table-responsive {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07) !important;
    transition: all 0.3s ease;
    padding-bottom: 40px;
}

.comparison-table:hover {
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.2),
        /* Sombra mais intensa no hover */
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.2);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    /* Reduzindo tamanho da fonte um pouco mais */
    padding: 18px 12px;
    /* Reduzindo padding um pouco mais */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 12px;
    /* Reduzindo padding um pouco mais */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    /* Reduzindo tamanho da fonte um pouco mais */
}

.comparison-table tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

.comparison-table i {
    font-size: 1.2rem;
}

.comparison-table .fa-check {
    color: var(--success);
}

.comparison-table .fa-times {
    color: #dc3545;
}

/* Estilo para a nota do rodapé */
.footer-note {
    margin-top: 80px;
    /* Aumentar espaço acima da nota */
    text-align: center;
}

/* Footer Styling (Copied from main.css to match index.html) */
.footer {
    --background-color: #2a2c39;
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    text-align: center;
    padding: 80px 0;
}

.footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

.footer .social-links {
    margin: 0 0 40px 0;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(var(--default-color-rgb), 0.5);
    margin: 0 8px;
    color: var(--default-color);
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.footer .copyright {
    margin: 0 0 5px 0;
}

.footer .credits {
    font-size: 13px;
}

/* Preserve specific styles from style.css if they don't conflict with main.css */
.footer .sitename {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.footer .cnpj {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin-top: 25px;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 1200px) {
    .pricing-container {
        max-width: 100%;
        padding: 40px 20px;
    }

    .pricing-row {
        gap: 20px;
        padding: 0 10px;
    }

    .price-card {
        max-width: calc(50% - 20px);
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .price-card {
        width: calc(50% - 15px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 30px 15px;
        gap: 25px;
    }

    .pricing-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
        min-width: 280px;
    }

    .pricing-row {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .price-card {
        min-width: 100%;
        max-width: 100%;
        width: 100% !important;
        flex: none !important;
    }

    .pricing-container h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .pricing-row {
        padding: 0 5px;
        gap: 15px;
    }

    /* Garantir que os botões sejam sempre visíveis em mobile */
    .btn-buy {
        display: block !important;
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Ajustar o espaçamento interno dos cards para mobile */
    .card-body {
        padding: 15px 12px !important;
    }

    .card-header {
        padding: 15px 12px !important;
    }

    .card-header h3 {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
    }

    .card-price {
        font-size: 1.8rem !important;
        margin: 4px 0 !important;
    }

    .features {
        margin-bottom: 15px !important;
    }

    .features li {
        padding: 6px 0 !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 20px 10px;
    }

    .price-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: none !important;
    }

    .btn-buy {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
        margin-top: 12px !important;
    }

    .card-body {
        padding: 12px 10px !important;
    }

    .card-header {
        padding: 12px 10px !important;
    }

    .card-header h3 {
        font-size: 1.1rem !important;
    }

    .card-price {
        font-size: 1.6rem !important;
    }

    .features li {
        font-size: 0.8rem !important;
        padding: 4px 0 !important;
    }
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .app-description p {
        font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        padding: 15px;
    }

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

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .app-description {
        padding: 20px;
    }

    .app-description p {
        font-size: 0.95rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 0.7rem;
    }
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader:after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .navmenu ul {
        gap: 20px;
    }

    .navmenu a {
        font-size: 13px;
    }

    .footer .sitename {
        font-size: 18px;
    }

    .footer .social-links {
        gap: 20px;
    }

    .footer .social-links a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .navmenu ul {
        gap: 15px;
    }

    .navmenu a {
        font-size: 12px;
    }

    .footer {
        padding: 30px 0 0 0;
    }

    .footer .sitename {
        font-size: 16px;
    }

    .footer .social-links {
        gap: 15px;
    }

    .footer .social-links a {
        font-size: 18px;
    }
}

/* Erasmo Cardoso - Dev */
/* Estilização do formulário de contato - apenas bordas e focus */
.php-email-form .form-control:focus,
.php-email-form input[type="text"]:focus,
.php-email-form input[type="email"]:focus,
.php-email-form input[type="tel"]:focus,
.php-email-form input[type="url"]:focus,
.php-email-form select:focus,
.php-email-form textarea:focus,
#contactForm .form-control:focus,
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus,
input#nome:focus,
input#email:focus,
input#whatsapp:focus,
input#telefone:focus,
select#tipo:focus,
input#observacao:focus,
textarea#mensagem:focus {
    border-color: #031a9c !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(3, 26, 156, 0.25) !important;
}

/* Erasmo Cardoso - Dev */
/* Padronizar cor dos placeholders em todos os campos do formulário */
#contactForm input::placeholder,
#contactForm select::placeholder,
#contactForm textarea::placeholder,
.php-email-form input::placeholder,
.php-email-form select::placeholder,
.php-email-form textarea::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}