/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Header */
header {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    margin: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-container {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #4B5563;
    border-radius: 0.75rem;
    padding: 0.25rem;
}

.logo-text {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #D1D5DB;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D1D5DB;
}

.btn-teste-gratis {
    background: white;
    color: #EA580C;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-teste-gratis:hover {
    transform: scale(1.05);
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#carousel {
    position: relative;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    flex-direction: row;
    position: relative;
    z-index: 10;
}

.carousel-item.active {
    display: flex;
    opacity: 1;
}

.carousel-text-container {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: white;
}

.carousel-content {
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-content h1 {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.carousel-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    color: #D1D5DB;
    line-height: 1.4;
}

.text-highlight {
    color: #FCD34D;
}

.text-highlight-bold {
    font-weight: bold;
    color: #FCD34D;
}

.carousel-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .carousel-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.btn-premium {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-premium:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-secondary:hover {
    color: #FCD34D;
}

.carousel-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    color: #FBBF24;
    margin-right: 0.5rem;
}

.price-box {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.price-box p {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.price-value {
    font-size: 1.5rem;
}

.carousel-image-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    height: 100%;
}

.carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

.carousel-dot:hover {
    background: white;
}

/* Container Global */
.container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.features-section h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #1F2937;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 140, 0, 0.15);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-container {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.feature-delay-1 {
    animation-delay: 0.5s;
}

.feature-delay-2 {
    animation-delay: 1s;
}

.feature-delay-3 {
    animation-delay: 1.5s;
}

.feature-svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Prices Section */
.prices-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.prices-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prices-header h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.prices-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6B7280;
    margin-bottom: 2rem;
}

.trial-badge {
    display: inline-flex;
    background: white;
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.trial-badge span {
    color: #6B7280;
    font-weight: 500;
    padding: 0.25rem 1rem;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 30px 60px rgba(255, 140, 0, 0.2);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.popular {
    border-color: rgba(255, 140, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    z-index: 10;
}

.price-header {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.price-value-container {
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-number {
    font-size: clamp(3rem, 6vw, 3.75rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: #6B7280;
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.price-subtitle {
    font-size: 0.75rem;
    color: #6B7280;
}

.price-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.old-price {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: line-through;
}

.savings-badge {
    background: #DCFCE7;
    color: #166534;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.features-list {
    text-align: left;
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: #F97316;
    margin-right: 0.75rem;
}

.btn-full {
    width: 100%;
    display: inline-block;
}

.price-highlight {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Analytics Section */
.analytics-section {
    padding: 4rem 1rem;
    background: #F1F5F9;
}

.analytics-section h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 2rem;
    text-align: center;
}

.analytics-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.analytics-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.line-chart-premium {
    position: relative;
    height: 450px;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.line-chart-premium svg {
    width: 100%;
    height: 100%;
}

.line-path-premium {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawLinePremium 3s ease-out;
}

@keyframes drawLinePremium {
    0% {
        stroke-dasharray: 2000px;
        stroke-dashoffset: 2000px;
    }
    100% {
        stroke-dasharray: 2000px;
        stroke-dashoffset: 0;
    }
}

.data-point-premium {
    fill: #FF8C00;
    stroke: #fff;
    stroke-width: 3px;
    animation: popInPremium 0.8s ease-out;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-point-premium:hover {
    r: 8;
    fill: #FFD700;
    stroke-width: 4px;
}

@keyframes popInPremium {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tooltip-bg {
    opacity: 0;
    animation: fadeInTooltip 0.6s ease-out forwards;
}

.tooltip-text {
    opacity: 0;
    animation: fadeInTooltip 0.6s ease-out forwards;
}

.month-label {
    opacity: 0;
    animation: fadeInLabel 0.8s ease-out forwards;
}

@keyframes fadeInTooltip {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLabel {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.analytics-text {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.analytics-text p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.chart-category {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00, #FFA500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-category:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.chart-category:hover::before {
    opacity: 1;
}

.chart-category h4 {
    color: #FCD34D;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chart-category ul li {
    color: #E2E8F0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-weight: 500;
}

.chart-category ul li::before {
    content: '•';
    color: #FF8C00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.more-charts {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.more-charts h4 {
    color: #FFA500;
    font-size: 1.2rem;
}

.more-charts p {
    color: #FCD34D;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.performance-metric {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpMetric 0.8s ease-out forwards;
}

.performance-metric:nth-child(1) { animation-delay: 3s; }
.performance-metric:nth-child(2) { animation-delay: 3.2s; }
.performance-metric:nth-child(3) { animation-delay: 3.4s; }

@keyframes slideUpMetric {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #FCD34D;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #D1D5DB;
    font-weight: 500;
}

.analytics-description {
    font-size: 1.25rem;
    color: #6B7280;
    margin-top: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Footer */
footer {
    background: #1F2937;
    color: white;
    padding: 3rem 1rem;
    border-radius: 0.75rem 0.75rem 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        align-items: center;
    }
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
        width: 50%;
        justify-content: flex-start;
    }
}

.footer-img {
    border-radius: 0.75rem;
    height: auto;
    object-fit: cover;
    max-width: 150px;
    width: 27%;
    background: transparent;
}

@media (min-width: 768px) {
    .footer-img {
        max-width: none;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 6rem;
        text-align: left;
        width: auto;
    }
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FBBF24;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column ul li a:hover {
    color: #FCD34D;
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
}