/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #00ffff, #0099ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
    to {
        text-shadow: 0 0 30px #0099ff, 0 0 40px #0099ff, 0 0 50px #0099ff;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0099ff);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099ff, #9d4edd);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #00ffff;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 8px;
}

.stat-label {
    color: #999;
    font-size: 14px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.floating-2 {
    bottom: 10%;
    right: 5%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-color: rgba(0, 153, 255, 0.3);
    animation-delay: 1s;
}

.floating-3 {
    top: 50%;
    left: 10%;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border-color: rgba(157, 78, 221, 0.3);
    animation-delay: 2s;
}

.floating-4 {
    top: 20%;
    right: 15%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: rgba(255, 20, 147, 0.3);
    animation-delay: 3s;
}

.floating-5 {
    bottom: 30%;
    left: 20%;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border-color: rgba(255, 165, 0, 0.3);
    animation-delay: 4s;
}

.floating-6 {
    top: 70%;
    right: 25%;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border-color: rgba(50, 205, 50, 0.3);
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Pain Points Section */
.pain-section {
    background: linear-gradient(180deg, #000 0%, #111 50%, #222 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pain-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(30, 30, 30, 0.9);
}

.pain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(50, 50, 50, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pain-card:hover .pain-icon {
    background: rgba(70, 70, 70, 0.7);
}

.pain-icon i {
    font-size: 32px;
}

.text-red { color: #ff6b6b; }
.text-orange { color: #ffa726; }
.text-yellow { color: #ffeb3b; }

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.pain-card:hover h3 {
    color: #00ffff;
}

.pain-card p {
    color: #999;
    line-height: 1.6;
}

.pain-cta {
    text-align: center;
}

.urgency-box {
    display: inline-block;
    padding: 40px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.urgency-box p {
    color: #ccc;
    margin-bottom: 24px;
}

.urgency-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Benefits Section */
.benefits-section {
    background: #111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
    z-index: 2;
    position: relative;
}

.gradient-1 { background: linear-gradient(45deg, #00ffff, #0099ff); }
.gradient-2 { background: linear-gradient(45deg, #0099ff, #9d4edd); }
.gradient-3 { background: linear-gradient(45deg, #9d4edd, #ff1493); }
.gradient-4 { background: linear-gradient(45deg, #ff1493, #ff6347); }
.gradient-5 { background: linear-gradient(45deg, #ff6347, #ffa500); }
.gradient-6 { background: linear-gradient(45deg, #ffa500, #00ffff); }

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #00ffff;
}

.benefit-card p {
    color: #999;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
}

.cta-box {
    display: inline-block;
    padding: 40px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(0, 153, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: #ccc;
    margin-bottom: 24px;
}

/* Portfolio Section */
.portfolio-section {
    background: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.portfolio-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
}

.portfolio-image-analise-certa {
  background-image: url('./images/analise-certa.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portfolio-image-arquitetura {
  background-image: url('./images/arquitetura.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portfolio-image-credmei {
  background-image: url('./images/credmei.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.portfolio-image-apoio-consultoria {
  background-image: url('./images/apoio-consultoria.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.portfolio-image-marketing-digital {
  background-image: url('./images/marketing-digital.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.portfolio-image-education-financial {
  background-image: url('./images/education_financial.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.base-portfolio-image .portfolio-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.gradient-bg-1 { background: linear-gradient(45deg, #ff1493, #9d4edd); }
.gradient-bg-2 { background: linear-gradient(45deg, #0099ff, #00ffff); }
.gradient-bg-3 { background: linear-gradient(45deg, #ff6347, #ff1493); }
.gradient-bg-4 { background: linear-gradient(45deg, #32cd32, #00ffff); }
.gradient-bg-5 { background: linear-gradient(45deg, #9d4edd, #0099ff); }
.gradient-bg-6 { background: linear-gradient(45deg, #ffa500, #ff6347); }

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 15px;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.portfolio-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    color: #00ffff;
}

.portfolio-content p {
    color: #999;
    margin-bottom: 20px;
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #00ffff;
}

.stat-name {
    font-size: 12px;
    color: #666;
}

.portfolio-cta {
    text-align: center;
}

.portfolio-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.portfolio-cta p {
    color: #ccc;
    margin-bottom: 32px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    padding: 40px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 48px;
    color: rgba(0, 255, 255, 0.3);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 32px;
}

.testimonial-rating i {
    color: #ffd700;
    margin: 0 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-role {
    color: #00ffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.author-company {
    color: #999;
    font-size: 12px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 8px;
}

.trust-label {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    color: #00ffff;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 32px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-title .line {
    display: block;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.urgency-item {
    padding: 30px;
    background: rgba(100, 0, 0, 0.2);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.urgency-item:nth-child(2) {
    background: rgba(100, 50, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}

.urgency-item:nth-child(3) {
    background: rgba(100, 100, 0, 0.2);
    border-color: rgba(255, 255, 0, 0.3);
}

.urgency-item i {
    font-size: 32px;
    margin-bottom: 16px;
    color: #ff6b6b;
}

.urgency-item:nth-child(2) i {
    color: #ffa726;
}

.urgency-item:nth-child(3) i {
    color: #ffeb3b;
}

.urgency-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff6b6b;
}

.urgency-item:nth-child(2) .urgency-title {
    color: #ffa726;
}

.urgency-item:nth-child(3) .urgency-title {
    color: #ffeb3b;
}

.urgency-text {
    color: #ccc;
}

.cta-button-container {
    margin-bottom: 60px;
}

.cta-note {
    margin-top: 20px;
    color: #999;
}

.highlight {
    color: #00ffff;
    font-weight: 700;
}

.guarantee-box {
    display: inline-block;
    padding: 40px;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-box p {
    color: #ccc;
}

.social-proof {
    margin-bottom: 40px;
}

.social-proof p {
    color: #999;
    margin-bottom: 20px;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-items span {
    color: #666;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background: #111;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00ffff;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: #ccc;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: rgba(50, 50, 50, 0.8);
    border: 1px solid #555;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    position: relative;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 16px;
}

.form-note i {
    color: #32cd32;
    margin-right: 8px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #0099ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #000;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: #999;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-details a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0099ff;
}

.contact-details span {
    color: #ccc;
}

.guarantee-highlight {
    padding: 24px;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.guarantee-highlight h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.guarantee-highlight i {
    color: #32cd32;
}

.guarantee-highlight p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    position: relative;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.brand-name {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    transform: translateY(-2px);
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-contact h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.contact-info-footer {
    margin-bottom: 32px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item-footer i {
    color: #00ffff;
    width: 20px;
}

.contact-item-footer span {
    color: #999;
}

.footer-cta {
    padding: 20px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(0, 153, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer-cta p {
    color: #ccc;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.footer-tagline .tagline {
    color: #00ffff;
    font-weight: 500;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00ffff;
}

.footer-decoration {
    position: absolute;
}

.decoration-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ffff;
    animation: pulse 2s infinite;
}

.decoration-1 {
    bottom: 20px;
    left: 20px;
}

.decoration-2 {
    top: 20px;
    right: 20px;
    background: #0099ff;
    animation-delay: 1s;
}

.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-modal.show {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.portfolio-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    background: #111;
}

.portfolio-modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #00ffff;
    margin: 0;
}

.portfolio-modal .modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.portfolio-modal .modal-close:hover {
    background: #333;
    color: #00ffff;
    transform: rotate(90deg);
}

.portfolio-modal .modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.portfolio-modal .video-container {
    position: relative;
    width: 100%;
    background: #000;
}

.portfolio-modal video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: contain;
}

.portfolio-modal .modal-info {
    padding: 30px;
    background: #1a1a1a;
}

.portfolio-modal .modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.portfolio-modal .modal-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.portfolio-modal .modal-stats .stat {
    text-align: center;
}

.portfolio-modal .modal-stats .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 5px;
}

.portfolio-modal .modal-stats .stat-name {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.button-contact-us {
    text-decoration: none;
    color:  #000;
}
.button-contact-us-white {
    text-decoration: none;
    color:  #888;
}
.address {
    cursor: pointer;
    margin: 10px 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #222;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: #32cd32;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 16px;
    color: #fff;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 32px;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) !important;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}
@media (max-width: 768px) {

    .portfolio-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .portfolio-modal .modal-header {
        padding: 15px 20px;
    }
    
    .portfolio-modal .modal-title {
        font-size: 20px;
    }
    
    .portfolio-modal .modal-info {
        padding: 20px;
    }
    
    .portfolio-modal .modal-stats {
        gap: 20px;
    }
    
    .portfolio-modal .modal-stats .stat-value {
        font-size: 24px;
    }
    
    .portfolio-modal video {
        max-height: 40vh;
    }
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pain-grid,
    .benefits-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .proof-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {

    .portfolio-modal .modal-stats {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pain-card,
    .benefit-card,
    .portfolio-item {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .urgency-item {
        padding: 20px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}
