/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7e22ce;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(126, 34, 206, 0.3);
    border-top: 3px solid #7e22ce;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(126, 34, 206, 0.1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(126, 34, 206, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand h2 {
    color: #7e22ce;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
}

.brand-tagline {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #7e22ce;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7e22ce, #a855f7);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    font-size: 0.9rem !important;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #7e22ce;
    border: 2px solid #7e22ce;
}

.btn-secondary:hover {
    background: #7e22ce;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(126, 34, 206, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(126, 34, 206, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(192, 132, 252, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(126, 34, 206, 0.1);
    border: 1px solid rgba(126, 34, 206, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 50px 0 30px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #7e22ce;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7e22ce;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    text-align: center;
}

.hero-trust span {
    display: block;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-logo {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-browser {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #9ca3af;
    flex: 1;
}

.browser-content {
    padding: 24px;
}

.mockup-hero {
    margin-bottom: 20px;
}

.mockup-title {
    height: 20px;
    background: linear-gradient(90deg, #7e22ce, #a855f7);
    border-radius: 4px;
    margin-bottom: 12px;
    width: 80%;
}

.mockup-subtitle {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 16px;
    width: 60%;
}

.mockup-button {
    height: 32px;
    background: linear-gradient(90deg, #7e22ce, #a855f7);
    border-radius: 6px;
    width: 120px;
}

.mockup-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.feature-item:nth-child(2) { width: 70%; }
.feature-item:nth-child(3) { width: 85%; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(126, 34, 206, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.3);
}

.card-1 {
    top: 20%;
    right: -20%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: -25%;
    animation: float 5s ease-in-out infinite reverse;
}

.card-3 {
    top: 60%;
    right: -15%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(126, 34, 206, 0.1);
    border: 1px solid rgba(126, 34, 206, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(126, 34, 206, 0.2);
}

.service-card.featured {
    border: 2px solid #7e22ce;
    transform: scale(1.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-badge {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-from {
    display: block;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #7e22ce;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.service-features li i {
    color: #7e22ce;
    font-size: 0.9rem;
    width: 16px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a0d2e);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #7e22ce, #a855f7);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

 .step-content {
    order: 3;
    text-align: left;
}

.process-step:nth-child(even) .step-icon {
    order: 2;
    text-align: center;
}

.process-step:nth-child(even) .step-number {
    order: 1;
    text-align: right;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(126, 34, 206, 0.3);
    text-align: right;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
}

.step-features li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.step-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7e22ce;
    font-weight: bold;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.3);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a0d2e);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(126, 34, 206, 0.3);
    color: #9ca3af;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-results {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.result-item {
    background: rgba(126, 34, 206, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    background: rgba(119, 0, 167, 0.534);
    color: #d1d5db;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-actions {
    display: flex;
    gap: 0.5rem;
}

.portfolio-btn {
    width: 40px;
    height: 40px;
    background: rgba(126, 34, 206, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: #7e22ce;
    transform: scale(1.1);
}

.portfolio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.portfolio-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.portfolio-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.about-text p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #7e22ce;
    font-size: 1.2rem;
    margin-top: 4px;
    width: 20px;
}

.feature-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #7e22ce;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(126, 34, 206, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #7e22ce;
    transform: scale(1.1);
}

.about-cards {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-card {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(126, 34, 206, 0.2);
    flex: 1;
    text-align: center;
}

.about-card i {
    color: #7e22ce;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
}

.stars {
    color: #7e22ce;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #9ca3af;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.company-logo {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: rgba(126, 34, 206, 0.2);
    border: 1px solid rgba(126, 34, 206, 0.3);
    border-radius: 50%;
    color: #7e22ce;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #7e22ce;
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(126, 34, 206, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7e22ce;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a0d2e);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(126, 34, 206, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.cta-feature i {
    color: #7e22ce;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
    height: fit-content;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #d1d5db;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: #9ca3af;
    font-size: 0.85rem;
}

.social-links h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(126, 34, 206, 0.1);
    border: 1px solid rgba(126, 34, 206, 0.3);
    border-radius: 8px;
    color: #7e22ce;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #7e22ce;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7e22ce;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select option {
    background: #1a0d2e;
    color: #ffffff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-color: #7e22ce;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #7e22ce;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #7e22ce;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social .social-link:hover {
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #7e22ce;
}

.footer-contact .contact-info {
    margin-bottom: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    color: #7e22ce;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(126, 34, 206, 0.1);
    border: 1px solid rgba(126, 34, 206, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    color: #7e22ce;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.modal-close {
    color: #9ca3af;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #7e22ce;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 34, 206, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.2rem;
}

.whatsapp-text {
    display: none;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #059669, #10b981);
}

.notification.error {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.notification.info {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

/* Quote Page Styles */
.quote-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 100%);
    min-height: 100vh;
}

.quote-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quote-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.quote-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.benefit-item i {
    color: #7e22ce;
}

.quote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.quote-form-container {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
    overflow: hidden;
}

.quote-form {
    padding: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(126, 34, 206, 0.2);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(126, 34, 206, 0.2);
}

.step-indicator {
    display: flex;
    gap: 0.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(126, 34, 206, 0.3);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #7e22ce;
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-card {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.quote-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list li i {
    color: #7e22ce;
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefits-list li strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.benefits-list li p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.process-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-content p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.contact-card {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
}

.contact-card h3,
.contact-card p {
    color: white;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-option.whatsapp {
    background: #25d366;
}

.contact-option.whatsapp:hover {
    background: #128c7e;
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 100%);
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.blog-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.featured-article {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.featured-article .article-image {
    position: relative;
    height: 300px;
}

.featured-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-article .article-content {
    padding: 2rem;
}

.featured-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-article h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-article h2 a:hover {
    color: #7e22ce;
}

.featured-article p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.author-info strong {
    color: #ffffff;
}

.article-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 0.9rem;
}

.article-date i,
.reading-time i {
    color: #7e22ce;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(126, 34, 206, 0.2);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card .article-image {
    position: relative;
    height: 200px;
}

.article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card h3 a:hover {
    color: #7e22ce;
}

.article-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.article-card .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.sidebar-widget h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 16px;
    border-radius: 8px;
}

.newsletter-form small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    color: #d1d5db;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.categories-list a:hover,
.categories-list a.active {
    background: rgba(126, 34, 206, 0.1);
    color: #7e22ce;
}

.categories-list span {
    color: #9ca3af;
    font-size: 0.85rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.popular-post .post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post .post-content h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.popular-post .post-content h4 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post .post-content h4 a:hover {
    color: #7e22ce;
}

.popular-post .post-date {
    color: #9ca3af;
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(126, 34, 206, 0.1);
    color: #7e22ce;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #7e22ce;
    color: white;
}

.cta-widget {
    background: linear-gradient(135deg, #7e22ce, #a855f7) !important;
    text-align: center;
}

.cta-widget h3,
.cta-widget p {
    color: white;
}

.cta-widget .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-widget .btn:hover {
    background: white;
    color: #7e22ce;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .mockup-browser {
        width: 300px;
    }
    
    .floating-card {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        text-align: left;
    }
    
    .process-step:nth-child(even) .step-content {
        order: 2;
    }

    .process-step:nth-child(even) .step-icon {
        order: 1;
    }

    .process-step:nth-child(even) .step-number {
        display: none;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-cards {
        flex-direction: column;
    }

    .testimonial-controls {
        gap: 1rem;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-text {
        display: inline;
    }
    
    .back-to-top {
        bottom: 6rem;
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 15px;
    }
    .footer-contact{
        display: none;
    }
    .footer-links{
        display: none;
    }
    .footer-social{
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .taligado{
     display: none;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card,
    .contact-form,
    .quote-card {
        padding: 1.5rem;
    }
    
    .mockup-browser {
        width: 250px;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .quote-header h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

/* Selection */
::selection {
    background: rgba(126, 34, 206, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(126, 34, 206, 0.3);
    color: #ffffff;
}

/* Focus styles */
*:focus {
    outline: 2px solid rgba(126, 34, 206, 0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .whatsapp-float {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}