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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 254, 198, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5DFEC6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5DFEC6, #B035FD);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #5DFEC6;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(93, 254, 198, 0.1);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-link:hover {
    background: rgba(93, 254, 198, 0.1);
    color: #5DFEC6;
}

.cta-link {
    background: linear-gradient(135deg, #5DFEC6, #B035FD);
    color: #000000 !important;
    font-weight: 600;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(93, 254, 198, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(93, 254, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(176, 53, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #5DFEC6, #B035FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5DFEC6, #B035FD);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(93, 254, 198, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 254, 198, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #5DFEC6, #B035FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 254, 198, 0.1);
    position: relative;

    display: flex;              /* importante */
    flex-direction: column;     /* empilha imagem e conteúdo */
    justify-content: space-between; /* joga o botão para o final */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(93, 254, 198, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 254, 198, 0.2);
    border-color: rgba(93, 254, 198, 0.3);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 254, 198, 0.2), rgba(176, 53, 253, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5DFEC6;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;

    flex: 1; /* ocupa espaço disponível */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* garante que botão fique no fim */
    text-align: center; /* centraliza textos e botão */
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5DFEC6;
}

.service-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    margin: 0 auto;
    background: linear-gradient(135deg, #B035FD, #5DFEC6);
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(176, 53, 253, 0.3);
}

/* Promotion Section */
.promotion {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.promotion-title {
    color: #5DFEC6;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center; /* centraliza textos */
    margin: 0.5rem 0;   /* reduz margens internas */
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* cards menores */
    gap: 2rem; /* espaçamento entre os cards */
    margin: 0 auto 2rem; /* centraliza a grid e reduz margem superior */
    max-width: 900px; /* largura máxima da grid */
}

.promotion-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 1.5rem 2rem; /* menos padding interno */
    text-align: center;   /* centraliza títulos, subtítulos e botões */
    border: 1px solid rgba(93, 254, 198, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between; /* botão sempre no mesmo lugar */
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #5DFEC6, #B035FD, #5DFEC6);
    background-size: 200% 200%;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

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

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(93, 254, 198, 0.2);
}

.promotion-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem; 
    border-radius: 999px;   /* deixa super arredondado (pílula) */
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: fit-content;
    min-width: unset;
    margin: 0 auto 1rem;
    white-space: nowrap;
}

.promotion-badge.basic {
    background: linear-gradient(135deg, #5DFEC6, #00D4AA);
    color: #000000;
}

.promotion-badge.premium {
    background: linear-gradient(135deg, #B035FD, #8A2BE2);
    color: #ffffff;
}

.promotion-price {
    font-size: 3rem;
    font-weight: 800;
    color: #5DFEC6;
    margin-bottom: 0.5rem;
    text-align: center; /* centraliza textos */
    margin: 0.5rem 0;   /* reduz margens internas */

}

.promotion-subtitle {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center; /* centraliza textos */
    margin: 0.5rem 0;   /* reduz margens internas */

}

.promotion-mockup {
    margin: 1.5rem 0; /* menos espaço acima/abaixo da imagem */
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(93, 254, 198, 0.3));
}

.promotion-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0; /* reduz espaço entre lista e botão */
    text-align: center; /* centraliza os itens */
}

.promotion-features li {
    padding: 0.3rem 0; /* reduz espaçamento entre itens */
    color: #cccccc;
    font-size: 1rem;
}

.promotion-btn {
    display: inline-block;
    padding: 1rem 2rem; /* mantém altura confortável */
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;      /* centraliza */
    text-align: center;   /* centraliza texto dentro do botão */
    width: auto;          /* ajusta largura automaticamente ao texto */
    min-width: 0;         /* remove mínimo fixo */
}

.basic-btn {
    background: linear-gradient(135deg, #5DFEC6, #00D4AA);
    color: #000000;
}

.premium-btn {
    background: linear-gradient(135deg, #B035FD, #8A2BE2);
    color: #ffffff;
}

.promotion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 254, 198, 0.3);
}

.promotion-note {
    text-align: center;
    color: #999999;
    font-style: italic;
    margin-top: 1.5rem; /* menos espaço */
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(93, 254, 198, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(93, 254, 198, 0.1);
    border-color: rgba(93, 254, 198, 0.3);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5DFEC6;
    margin-bottom: 0.5rem;
}

.testimonial-business {
    color: #B035FD;
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(93, 254, 198, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-around; /* distribui igualmente */
  align-items: flex-start;       /* alinha pelo topo */
  flex-wrap: wrap;               /* quebra no mobile */

  gap: 4rem 4rem; /* 4rem em cima/baixo, 4rem nos lados */

  margin-bottom: 3rem;
  max-width: 1200px;
  margin: 0 auto; /* centraliza o conjunto */
  padding: 2rem 1rem; /* espaçamento extra em cima/baixo */
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 70px;
    width: 260px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5DFEC6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #5DFEC6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 254, 198, 0.3);
}

.social-link.whatsapp {
    color: #25D366;
}

.social-link.instagram {
    color: #aa00ff;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(93, 254, 198, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(93, 254, 198, 0.1);
    padding-top: 2rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5DFEC6, #B035FD);
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(93, 254, 198, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 254, 198, 0.4);
}

.footer-legal {
    text-align: center;
    color: #999999;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #5DFEC6;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .promotion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .promotion-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .promotion-card {
        padding: 2rem 1.5rem;
    }
    
    .promotion-price {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

