/* 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;
        color: #ff6b35;
    }
}

.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;
}

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

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

/* 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: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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: radial-gradient(ellipse at center, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 10% 20%, rgba(25, 135, 84, 0.1) 0%, transparent 50%);
    animation: radialMove 20s ease-in-out infinite;
    z-index: 0;
}

.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: #666;
}

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

.period {
    font-size: 1rem;
    color: #666;
}

.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: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;
}

.features-list .fa-robot {
    color: #ff6b35;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    animation: robotPulse 2s infinite;
}

@keyframes robotPulse {
    0%, 100% { 
        transform: scale(1);
        color: #ff6b35;
    }
    50% { 
        transform: scale(1.1);
        color: #f7931e;
    }
}

.features-list i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 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);
}

.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: #fff;
    color: #0d6efd;
    border: 1px solid #e9ecef;
}

.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: #666;
    line-height: 1.8;
}

/* 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: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.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);
}

@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);
}

.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;
    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-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

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

/* Carousel Fixes */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
}

.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.2), rgba(0, 0, 0, 0.2)), 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-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
    transform: none;
    opacity: 0;
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    transform: none;
    opacity: 1;
}

#heroCarousel {
    height: 100vh;
    min-height: 600px;
}

.carousel-item .container {
    height: 100%;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Promo Banner */
.promo-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 12px 20px;
    display: inline-block;
    margin-top: 1.5rem;
}

/* Country Selector */
.country-selector .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero, .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;
}
/* 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.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 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);
}

.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, #667eea 0%, #764ba2 100%) !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(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2.5rem;
}

.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);
}

.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;
}