/*
 * Estilos específicos para a página inicial (Front Page)
 * Locnow Audiovisual Theme
 */
.wpb-content-wrapper {
    margin: 0;
    padding: 40px 0;
    border: none;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.vc_row {
    margin-left: -15px;
    margin-right: -15px;
}

.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}



.text-icon__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.container-animation {
    display: flex;
    justify-content: end;
    align-items: center;
}

.image-container {
    display: inline-block;
}

.rotating-image {
    display: inline-block;
}

/* Animação de rotação na imagem */
.rotating-img {
    animation: girar 5s linear infinite;
    display: block;
    border-radius: 50%;
    max-width: 100px;
}

/* Keyframe da animação */
@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Opcional: Pausa a rotação quando passar o mouse */
.rotating-img:hover {
    animation-play-state: paused;
}

/* Opcional: Adiciona uma sombra bonita */
.rotating-image {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.wd-heading .title_a {
    font-size: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wd-heading .title_a::after {
    content: attr(data-text);
    display: inline-table;
    height: 100%;
    font-size: 48px;
    position: absolute;
    left: -60px;
    right: 0px;
    top: -30px;
    transform: scale(1.7);
    transform-origin: left center;
    opacity: 0.2;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: gray;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41e1e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    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.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: "Tungsten Compressed Semi", "Tungsten", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* === FEATURES SECTION === */
.features-section {
    padding: 3rem 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #c41e1e;
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* === STATS SECTION === */
.stats-section {
    background: var(--black-color) url('../img/background-brick.png');
    color: white;
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    animation: countUp 2s ease-out;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1em;
    margin: 0.42em 0 0;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.75);
    font-family: "Open Sans", sans-serif;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.products-column-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.products-column-grid li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-column-grid li img {
    transition: all 0.2s ease-in-out;
}

.products-column-grid li img:hover {
    box-shadow: 0 46px 0px 2px var(--primary-color), 0 0px 0px 2px var(--primary-color);
    border-color: var(--primary-color);
}

.products-column-grid li a {
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    text-decoration: none;
    color: var(--header-color);
    text-align: center;
}

.products-column-grid li a:hover {
    background-size: 100% 100%;
    color: white;
}

.products-column-grid li a img {
    width: 120px;
    height: auto;
}

.woocommerce-loop-category__title {
    padding: .5em 0;
    margin: 0;
    font-size: 14px;
    text-decoration: none;
    color: var(--header-color);
}

.wd-btn {
    text-decoration: none;
    background: var(--black-color);
    color: white;
    text-align: center;
    display: block;
    width: 200px;
    margin: 40px auto;
    padding: 15px 10px;
}

.wd-btn:hover {
    background: var(--primary-color);
    color: white;
}



/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* === CATEGORIES SECTION === */
.categories-section {
    padding: 4rem 0;
}

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

.category-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-card>* {
    position: relative;
    z-index: 2;
}

.category-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === TÍTULOS COM BACKGROUND TEXT === */
.wd-heading {
    position: relative;
    text-align: left;
    margin: 2rem 0;
}

.wd-heading .title_a {
    position: relative;
    z-index: 2;
    font-size: 60px;
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}



/* Animação sutil para o texto de fundo */
@keyframes backgroundTextPulse {

    0%,
    100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Versão estática (descomente para usar) */
/*
.wd-heading .title_a::before {
    animation: none;
    opacity: 0.1;
}
*/

/* === CONTADORES ANIMADOS === */
.counter {
    font-family: "Tungsten Compressed Semi", "Tungsten", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    transition: all 0.3s ease;
}

.counter.animate {
    animation: counterPulse 0.5s ease-out;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        color: var(--text-color);
    }

    100% {
        transform: scale(1);
        color: var(--primary-color);
    }
}

/* === SEÇÃO CÂMERAS === */

.cameras-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.camera-card {
    width: calc(16.666% - 30px);
    min-height: 340px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.camera-card:hover {
    transform: translateY(-5px);
}

.camera-image {
    position: relative;
    overflow: hidden;
}

.camera-image a {
    padding: 30px;
    filter: brightness(0.95);
    background: #ffffff;
    overflow: hidden;
    display: block;
}

.camera-thumbnail {
    width: 50%;
    height: auto;
    display: block;
    margin: 0px auto;
    transition: all 1s ease;
    display: block;
}

.camera-card:hover .camera-thumbnail {
    transform: scale(1.05);
}

.camera-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.camera-badges .badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.camera-badges .badge.sale {
    background: var(--primary-color);
    color: #fff;
}

.camera-badges .badge.featured {
    background: #ffd700;
    color: #333;
}

.camera-info {
    padding: 5px 0px 0px;
}

.camera-title {
    margin: 0 0 1rem 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.camera-title a {
    color: var(--header-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.camera-title a:hover {
    color: var(--header-color);
}

.camera-price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.camera-price .woocommerce-Price-amount,
.camera-price .amount,
.camera-price .price-on-request {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--header-color);
    display: inline-block;
}

.camera-price .woocommerce-Price-amount bdi,
.camera-price .amount bdi {
    font-style: normal;
}

.camera-price .price-on-request {
    font-size: 1rem;
    color: #666;
}

.camera-price-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.camera-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.camera-rating .stars {
    display: flex;
    gap: 0.2rem;
}

.camera-rating .star {
    font-size: 1rem;
    color: #ddd;
}

.camera-rating .star.filled {
    color: #ffd700;
}

.camera-rating .rating-count {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.camera-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0px 5px;
}

.camera-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.camera-actions .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.camera-actions .btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

.camera-actions .btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.camera-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.camera-actions .btn-disabled {
    background: #f5f5f5;
    color: #999;
    border: 2px solid #e0e0e0;
    cursor: not-allowed;
}

.cameras-footer {
    text-align: center;
    margin-top: 3rem;
}

.cameras-footer .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-cameras {
    text-align: center;
    padding: 3rem;
    color: var(--dark-gray);
}

/* === ABOUT SECTION === */
.grid-about {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.about-card {
    width: 60%;
    background-color: white;
    z-index: 4;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    padding: 70px 75px 14px;
    position: relative;
    left: 12px;
}

.about-card h5 {
    font-size: 14px;
    color: var(--header-color);
    text-transform: Uppercase;
    letter-spacing: 1.4px;
}

.about-card h2 {
    font-size: 3.375rem;
    font-weight: 800;
    line-height: 50px;
    color: var(--header-color);
    margin: 20px 0px;

}

.about-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--header-color);
}

.about-image {
    width: calc(50% - 20px);
    background: #fff;
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 5;
}

.about-image::before {
    content: "";
    display: block;
    background: var(--primary-color);
    transform: translateX(-30px);
    height: calc(100% - 40px);
    width: 190px;
    position: absolute;
    bottom: -26px;
    right: -55px;
    z-index: 1;
}

.marks-section {
    background-color: rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;

}

.marks-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0px 30px;
    margin: 20px 0px;
}

.services-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.services-grid {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
    text-align: center;
}

.services-grid:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 80px;
    object-fit: cover;
}

.service-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.service-card p {
    font-size: 1rem;
    color: var(--dark-gray);
}

.news-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.news-card {
    width: calc(50% - 20px);
    background: #fff;
    position: relative;
}

.news-card::before {
    content: "";
    display: block;
    background: var(--primary-color);
    transform: translateX(-30px);
    height: calc(100% - 40px);
    width: 190px;
    position: absolute;
    bottom: -26px;
    left: 0px;
    z-index: 1;
}

.news-card img {
    position: relative;
    z-index: 5;
}

.news-card-text {
    width: 60%;
    background-color: white;
    z-index: 4;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    padding: 70px 75px 14px;
    position: relative;
    left: 12px;
}

.news-card-text h5 {
    font-size: 14px;
    color: var(--header-color);
    text-transform: Uppercase;
    letter-spacing: 1.4px;
}

.news-card-text h2 {
    font-size: 3.375rem;
    font-weight: 800;
    line-height: 50px;
    color: var(--header-color);
    margin: 20px 0px;
}

.news-card-text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--header-color);
}

.process-grid-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.process-grid-1::before {
    content: "";
    background: url(../img/arrow-1.webp) no-repeat left;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 245px;
    left: 0px;
    z-index: 1;
}

.process-step {
    width: 50%;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 1px solid #c53434;
}

.process-step p {
    font-size: 1rem;
    color: var(--dark-gray);
}

.process-step .process-number {
    font-size: 80px;
    font-weight: 700;
    color: #c53434;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-grid-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.process-grid-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.img-arrow-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1440px) {
    .about-image {
        width: calc(35% - 20px);
    }

    .about-image::before {
        right: -20px;
    }

    .news-card {
        width: calc(35% - 20px);
    }

    .news-card::before {
        left: 20px;
    }
}

@media (max-width: 1199px) {
    .wd-heading .title_a {
        font-size: 35px;
    }

    .camera-card {
        width: 50%;
    }

    .wd-heading .title_a::after {
        font-size: 30px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .camera-card {
        width: 100%;
    }

    .marks-images {
        display: none;
    }

    .services-container {
        flex-wrap: wrap;
    }

    .wd-heading .title_a::after {
        display: none;
    }

    .about-image {
        display: none;
    }

    .news-card,
    .about-card {
        display: none;
    }

    .news-card-text {
        width: 100%;
    }

    .process-step {
        width: 100%;
    }

    .process-grid-3 {
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .process-grid-2 {
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .process-grid-3 {
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .process-grid,
    .testimonials-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ajustar título com background text no tablet */
    .wd-heading .title_a {
        font-size: 2rem;
    }

    .wd-heading .title_a::before {
        font-size: 5rem;
        letter-spacing: 2px;
    }

    /* Responsivo para câmeras */
    .cameras-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .camera-actions {
        flex-direction: column;
    }

    .camera-actions .btn {
        min-width: auto;
    }

    /* Responsivo para contadores */
    .counter {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-section,
    .process-section,
    .testimonials-section,
    .categories-section {
        padding: 2rem 0;
    }

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

    /* Ajustar título com background text no mobile */
    .wd-heading .title_a {
        font-size: 1.5rem;
    }

    .wd-heading .title_a::before {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    /* Responsivo para câmeras no mobile */
    .cameras-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cameras {
        padding: 2rem 0;
    }

    .camera-info {
        padding: 1rem;
    }

    .camera-title {
        font-size: 1rem;
    }

    .camera-price {
        font-size: 1.1rem;
    }

    /* Responsivo para contadores no mobile */
    .counter {
        font-size: 2rem;
    }
}