/* Reset and Base Styles */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

/* Logo Styles */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35 !important;
}

.logo-img {
    height: 60px;
    /* Tamanho aumentado */
    width: 60px;
    /* Largura igual à altura para ficar redondo */
    max-height: 60px;
    border-radius: 50%;
    /* Torna o logo redondo */
    object-fit: cover;
    /* Garante que a imagem preencha o círculo */
    transition: transform 0.3s ease;
    padding: 0;
    /* Remove padding para melhor preenchimento */
}

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

/* Ajustes no navbar */
.navbar {
    padding: 0.5rem 0;
    min-height: 80px;
    /* Altura mínima para o cabeçalho */
    display: flex;
    align-items: center;
}

/* Ajuste no container do navbar */
.navbar>.container {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Ajuste nos itens do menu */
.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35 !important;
}

/* Ajuste para mobile */
@media (max-width: 991.98px) {
    .navbar>.container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 50px;
        /* Tamanho um pouco menor em dispositivos móveis */
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        color: #333;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa !important;
        color: #ff6b35 !important;
    }
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35 !important;
}

/* Country Selector */
.country-selector {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.country-selector label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.country-selector select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

/* Price Breakdown */
.price-breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.price-breakdown .d-flex {
    margin-bottom: 0.5rem;
    color: #495057;
}

.price-breakdown .d-flex:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #1a1a2e;
}

/* Promo Banner */
.promo-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    text-align: center;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
    position: relative;
    overflow: hidden;
}

/* Removed the complex radial gradient that was causing color clashes */

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

.services h2,
.services .lead,
.services .pricing-tabs,
.services .tab-content,
.services .pricing-card,
.card-header,
.card-body,
.card-footer,
.features-list,
.price,
.popular-badge {
    position: relative;
    z-index: 3;
}

@keyframes radialMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-5%, -5%) rotate(120deg);
    }

    66% {
        transform: translate(5%, -3%) rotate(240deg);
    }
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
    border-radius: 15px;
}

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

.pricing-card.popular {
    border: 2px solid #ff6b35;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
}

.period {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.card-body {
    padding: 2rem;
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.features-list li i {
    margin-right: 1.5rem !important;
    min-width: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:last-child {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 1rem 0;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #1a1a2e !important;
    /* Dark text for better contrast */
    border-left: 4px solid #ff6b35;
}

.features-list .fa-robot {
    color: #ff6b35;
    margin-right: 1.5rem !important;
    font-size: 1.1rem;
    animation: robotPulse 2s infinite;
    min-width: 1rem;
}

@keyframes robotPulse {

    0%,
    100% {
        transform: scale(1);
        color: #ff6b35;
    }

    50% {
        transform: scale(1.1);
        color: #f7931e;
    }
}

.features-list i {
    color: #ff6b35;
    margin-right: 1.5rem !important;
    font-size: 1rem;
    min-width: 1rem;
}

.card-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
}

.btn-outline-primary {
    border-color: #ff6b35;
    color: #ff6b35;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Pricing Tabs */
.pricing-tabs {
    max-width: 400px;
    margin: 0 auto 2rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid #e9ecef;
}

.pricing-tabs .nav-link {
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin: 0 4px;
}

.pricing-tabs .nav-link.active {
    background: #ff6b35;
    color: #fff;
    border: 1px solid #ff6b35;
}

.pricing-tabs .nav-link i {
    font-size: 1.1em;
    margin-right: 5px;
}

/* Email Plans */
#email .pricing-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#email .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Location Selector */
.location-selector {
    margin: 2rem 0 1rem;
}

.location-selector .form-select {
    cursor: pointer;
    font-weight: 500;
    padding-right: 2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
}

.location-selector .form-select:focus {
    box-shadow: none;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 0.375rem;
}

.location-selector .form-select-sm {
    padding: 0.25rem 2rem 0.25rem 0.5rem;
    font-size: 0.9rem;
}

/* Features Section */
.feature-box {
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-box p {
    color: #495057;
    line-height: 1.8;
    font-weight: 400;
}

/* Market Solutions Section */
.market-solutions {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.market-solutions::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.market-solutions::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.solution-card .card-header .feature-icon {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.solution-card:hover .card-header .feature-icon {
    animation: none;
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #1a1a2e;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    background-color: #fff;
    color: #1a1a2e;
}

/* Custom Dark Gradient for Google Ads Section */
.bg-gradient-custom-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Footer */
.footer {
    background: #2c3e50 !important;
}

.footer a {
    color: white !important;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6b35 !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float i {
    color: #ffffff !important;
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    background-color: #f7931e;
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.whatsapp-float i {
    color: #ffffff !important;
    font-size: 1.5rem;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.cookie-buttons .btn-primary:hover {
    background-color: #f7931e;
    border-color: #f7931e;
    transform: translateY(-2px);
    color: white !important;
}

.cookie-buttons .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 1.2rem;
    }

    .cookie-banner {
        padding: 0.75rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
        font-size: 0.85rem;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
        max-width: 150px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-tabs .nav-link {
        padding: 0.75rem 1.8rem;
        margin: 0 2px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {


    .hero {
        text-align: left !important;
    }

    .hero-image {
        font-size: 6rem;
    }

    .display-4 {
        font-size: 1.5rem;
        text-align: left !important;
    }

    .lead {
        font-size: 1rem;
        text-align: left !important;
    }

    .carousel-item .container {
        text-align: left !important;
        padding-left: 2rem;
        padding-right: 1rem;
    }

    .carousel-item .row {
        justify-content: flex-start !important;
        padding-left: 0.5rem;
    }

    .carousel-item .col-lg-6 {
        text-align: left !important;
        padding-left: 0;
        padding-right: 1rem;
    }

    .carousel-item h1 {
        font-size: 1.5rem;
        text-align: left !important;
        margin-bottom: 1rem !important;
        margin-left: 0.5rem;
    }

    .carousel-item p {
        font-size: 1rem;
        text-align: left !important;
        margin-bottom: 1.5rem !important;
        margin-left: 0.5rem;
        padding-right: 1rem;
    }

    .carousel-item .display-4 {
        font-size: 1.2rem !important;
        line-height: 1.3;
    }

    .carousel-item .d-flex {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .carousel-item .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .carousel-item .mt-4 {
        text-align: left !important;
    }

    .carousel-item .d-flex.align-items-center {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }

    .card-header {
        padding: 1.5rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-footer {
        padding: 1rem 1.5rem;
    }


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

    /* Hero Carousel Styles */
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
        background: #1a1a2e;
        margin: 0;
        padding: 0;
    }

    .carousel {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .carousel-inner {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .carousel-item {
        width: 100%;
        height: 100vh;
        min-height: 600px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .carousel-item:nth-child(1) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg-1.jpg');
    }

    .carousel-item:nth-child(2) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg-2.jpg');
    }

    .carousel-item:nth-child(3) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg-3.jpg');
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .carousel-control-prev,
    .carousel-item {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        margin-bottom: 2rem;
    }

    .carousel-item .container {
        text-align: left !important;
        padding-left: 2rem;
        padding-right: 1rem;
    }

    .carousel-item .row {
        justify-content: flex-start !important;
        padding-left: 0.5rem;
    }

    .carousel-item .col-lg-6 {
        text-align: left !important;
        padding-left: 0;
        padding-right: 1rem;
    }

    .carousel-item h1 {
        text-align: left !important;
        margin-bottom: 1rem !important;
        margin-left: 0.5rem;
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .carousel-item p {
        text-align: left !important;
        margin-bottom: 1.5rem !important;
        margin-left: 0.5rem;
        padding-right: 1rem;
        font-size: 1.1rem !important;
    }

    .carousel-item .display-4 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    /* Garantir que os botões dos planos sejam clicáveis no mobile */
    .pricing-card .card-footer button {
        position: relative;
        z-index: 1001;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
        cursor: pointer;
    }

    /* Melhorias específicas para iOS/Safari */
    @supports (-webkit-touch-callout: none) {
        .pricing-card .card-footer button {
            -webkit-appearance: none;
            appearance: none;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
    }

    /* Prevenir zoom duplo no iOS */
    .pricing-card .card-footer button:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    .pricing-card {
        position: relative;
        z-index: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Correções específicas para Safari/iPhone */
    .pricing-card * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* Forçar renderização correta no Safari */
    .services {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

.animate__delay-3s {
    animation-delay: 1.5s;
}

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

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

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.services,
.features,
.contact {
    animation: fadeIn 0.8s ease-out;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

.animate__delay-3s {
    animation-delay: 1.5s;
}

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

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

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.services,
.features,
.contact {
    animation: fadeIn 0.8s ease-out;
}

/* Google Ads Section Styles */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.google-ads {
    position: relative;
    overflow: hidden;
}

.google-ads .section-icon {
    animation: pulse 2s infinite;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
    color: #1a1a2e !important;
}

.glass-effect h4,
.glass-effect h5,
.glass-effect p,
.glass-effect li {
    color: #1a1a2e !important;
}

/* Sem hover para glass-effect */

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Exceção: remover hover do bg-gradient-info */
.bg-gradient-info {
    transition: none !important;
}

.bg-gradient-info:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Exceção específica para o bloco "Casos de Uso Comuns" */
.service-card.bg-gradient-info {
    transition: none !important;
}

.service-card.bg-gradient-info:hover {
    transform: none !important;
    box-shadow: none !important;
}

.service-card.popular {
    border: 2px solid #667eea;
    position: relative;
}

.card-icon {
    font-size: 2.5rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.service-card .card-icon {
    background: #f0f4ff;
    color: #667eea;
}

.service-card.popular .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-info {
    text-align: center;
}

/* N8N Section Styles */
.n8n-integration {
    background: #fff;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
}

.bg-gradient-info h4,
.bg-gradient-info h5,
.bg-gradient-info p,
.bg-gradient-info li,
.bg-gradient-info span {
    color: white !important;
}

/* AI Integration Section Styles */
.ai-integration {
    background: #f8f9fa;
}

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

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Settings Section Styles */
.bg-gradient-secondary {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.settings {
    position: relative;
}

.settings-card {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2.5rem;
    color: white !important;
    transition: none;
}

.settings-card h5,
.settings-card label span,
.settings-card .support-list a {
    color: white !important;
}

/* Sem hover para settings-card */

.settings-card h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.setting-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background: #667eea;
    border-color: #667eea;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    transition: all 0.3s ease;
}

.support-list li:hover {
    transform: translateX(10px);
    color: white !important;
}

.status-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-online {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.status-offline {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .glass-effect {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .settings-card {
        padding: 1.5rem;
    }

    .ai-feature-card {
        padding: 1.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .setting-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .form-check-input {
        width: 1.2rem;
        height: 1.2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .form-check-input:checked {
        background: #667eea;
        border-color: #667eea;
    }

    .support-list {
        list-style: none;
        padding: 0;
    }

    .support-list li {
        transition: all 0.3s ease;
    }

    .support-list li:hover {
        transform: translateX(10px);
    }

    .status-badge {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .status-indicator {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .status-online {
        background: #10b981;
        box-shadow: 0 0 10px #10b981;
    }

    .status-offline {
        background: #ef4444;
        box-shadow: 0 0 10px #ef4444;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        }
    }

    /* Responsive adjustments for new sections */
    @media (max-width: 768px) {
        .glass-effect {
            padding: 1.5rem;
        }

        .service-card {
            padding: 1.5rem;
        }

        .settings-card {
            padding: 1.5rem;
        }

        .ai-feature-card {
            padding: 1.5rem;
        }

        .display-5 {
            font-size: 2rem;
        }
    }

    /* Cursor pointer for interactive elements */
    .cursor-pointer {
        cursor: pointer;
    }

    /* Clients Section Styles */
    .clients {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }

    .clients::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.01) 100%);
        z-index: 1;
    }

    .clients .container {
        position: relative;
        z-index: 2;
    }

    .client-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .client-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 1.5rem;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
    }

    .client-name {
        color: #1a1a2e;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .website-link {
        color: #ff6b35;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .website-link:hover {
        color: #f7931e;
        transform: translateY(-2px);
    }

    .client-body {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .client-description {
        color: #495057;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex: 1;
    }

    .client-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: auto;
    }

    .client-tags .badge {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
    }

    .placeholder-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 2px dashed #dee2e6;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 300px;
    }

    .placeholder-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: #ff6b35;
    }

    .placeholder-content {
        text-align: center;
        padding: 2rem;
    }

    .placeholder-content i {
        color: #adb5bd;
        margin-bottom: 1rem;
    }

    .placeholder-content h4 {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .placeholder-content p {
        color: #adb5bd;
        margin-bottom: 1.5rem;
    }

    /* Responsive adjustments for clients section */
    @media (max-width: 768px) {
        .client-card {
            margin-bottom: 2rem;
        }

        .client-name {
            font-size: 1.3rem;
        }

        .client-description {
            font-size: 0.9rem;
        }

        .client-tags .badge {
            font-size: 0.7rem;
            padding: 0.3rem 0.6rem;
        }
    }
}

.text-muted {
    color: #6c757d !important;
    font-weight: 400;
}

.card-header .text-muted {
    color: #6c757d !important;
    font-weight: 500;
}

.lead {
    font-weight: 400;
    color: #495057;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
}

/* SEO Marquee Style */
.seo-marquee {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 5px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 1001;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 40s linear infinite;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee-animation {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

@media (max-width: 991.98px) {
    .seo-marquee {
        padding: 3px 0;
    }
}