@font-face {
    font-family: 'SFProDisplay';
    src: url('./src/assets/fonts/sf-pro-display/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('./src/assets/fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('./src/assets/fonts/sf-pro-display/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('./src/assets/fonts/sf-pro-display/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #222CE8;
    --primary-purple: #AA00F9;
    --primary-pink: #FE1D6C;
    --primary-orange: #FF8104;
    --dark-bg: #01050B;
    --dark-card: #1a1a2e;
    --text-white: #ffffff;
    --text-gray: #70708D;
    --gradient-purple-orange: linear-gradient(90deg, #222CE8 15% #AA00F9 25%, #FE1D6C 50%, #FF8104 100%);
    --gradient-bg: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 50%, #1a0b2e 100%);
}

body {
     font-family: 'SFProDisplay', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

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

/* Typography */
.gradient-text {
    background: linear-gradient(90deg, #AA00F9 0%, #FF8104 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.gradient-text-orange {
    background: linear-gradient(90deg, #FE1D6C 0%, #FF8104 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-color {
    position: absolute;
    z-index: -1;
}

.elipse-1 {
     top: 0;
    left: 0;
}

.elipse-2 {
    bottom: -200px;
    right: 0;
}



/* Header/Navbar */
.header {
    margin: 20px 8% 0 8%; 
    z-index: 1000;
    background: #03061580;
    border: 2px solid #2B2B2B;
    border-radius: 50px;
    
}



@media (min-width: 1800px) {
  .header {
     margin: 20px 20% 0 20%;
  }
}


.navbar {
    padding: 20px 0;
}



.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    font-weight: 700;
    color: white;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.btn-cta {
    background: linear-gradient(70deg,  #FF8104 0%, #FE1D6C 40%, #7400DD 65%, #222CE8 90%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary {
   background: linear-gradient(70deg,  #FF8104 0%, #FE1D6C 40%, #7400DD 65%, #222CE8 90%);
    color: white;
    border: none;
    padding: 12px 62px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
   
    
}

.hero::before {
    content: '';
     /* position: absolute;  */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image:
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%); */ 
    pointer-events: none; 
    
}

.box-border-around-section {
     margin: 10px 30px;
  
}


.hero-container-image {
    min-height: 100vh;
    min-width: 100%;
    background: url('../assets/images/bg-black-hole.png') no-repeat center center/cover;
    border: 1px solid rgba(255, 255, 255, 0.274);
    border-radius: 10px;
    
}



.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



.hero-title  {
    font-size: 100px;
    letter-spacing: -6px;
    line-height: .8;
    margin-bottom: 60px;
}

.hero-title .italic-text {
    font-style: italic;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
    color: #E7E7E8;
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 700;
   
    margin-bottom: 20px;
    text-align: center;
   
}

.section-title span {
    display: block;
     letter-spacing: -4px;
      line-height: 1.2;
}

.section-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: .8;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0 0 0 ;
    background: url('../assets/images/grid.png') no-repeat center center/contain;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-icon {
    width: 262px;
    height: 154px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    
}

.step-icon img {
    width: 262px;
    height: 154px;
    object-fit: cover;
    border-radius: 4px;
    
} 

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-content: center;
    justify-content: center;
    
}

.step-title h3 {
  margin: 20px 0 0 8px;
  line-height: 0.9;

}

.step-description {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-y: auto;
}

.step-arrow {
    flex-shrink: 0;
}

/* Video Types Section */
.video-types {
    padding: 120px 0;
    background: var(--dark-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    align-content: center;
}

.video-card {
    align-self: center;
    justify-self: center;
}

.video-card-image {
    width: 268px;
    height: 485px;;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
   
}



.video-card-image.reels {
    background: url('../assets/images/woman-card-orange.png') no-repeat center center/cover;
}


.video-card-image.vlog {
      background: url('../assets/images/street-card.png') no-repeat center center/cover;

}

.video-card-image.tutorial {
        background: url('../assets/images/man-card-tutorial.png') no-repeat center center/cover;

}

.video-card-image.podcast {
        background: url('../assets/images/man-potcast-card.png') no-repeat center center/cover;
}

.card-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.video-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    justify-self: center;
}

.video-card-desc {
    font-size: 16px;
    color: var(--text-gray);
}

/* Upload Section */
.upload-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
}

.upload-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
}

.upload-area {
    margin: 40px 0;
    display: flex;
    flex-direction: column ;
}

.upload-area .btn-primary {
   margin: auto;
}




.upload-box {
    background: rgba(10, 10, 15, 0.8);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-box:hover {
    border-color: var(--primary-purple);
}

.upload-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.upload-subtext {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.upload-icon {
    opacity: 0.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* margin-top: 40px; */
}

.social-icon {
    border-radius: 12px;
    justify-content: center;
    position: relative;
}

.social-icon.youtube {
    width: 332px;
    height: 203px;
    background: url('../assets/images/youtube-man-card.png') no-repeat center center/cover;
  
}

.social-icon.pinterest {
    width: 106px;
    height: 203px;
    background: url('../assets/images/room-pintrest-card.png') no-repeat center center/cover;
}

.social-icon.linkedin {
    width: 187px;
    height: 203px;
    background: url('../assets/images/linkdin-woman-card.png') no-repeat center center/cover;
}

.social-icon.instagram {
    width: 187px;
    height: 203px;
    background: url('../assets/images/insta-woman.png') no-repeat center center/cover;
}

.social-icon.facebook {
    width: 106px;
    height: 203px;
    background: url('../assets/images/facebook-woman-card.png') no-repeat center center/cover;
}

.social-icon.tiktok {
    width: 106px;
    height: 203px;
    background: url('../assets/images/tiktok-woman.png') no-repeat center center/cover;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-icon.youtube::before {
    background: url('../assets/icons/Youtube.svg' ) no-repeat center center/contain;
}

.social-icon.pinterest::before {
    background: url('../assets/icons/pinterest.svg' ) no-repeat center center/contain;
}

.social-icon.linkedin::before {
    background: url('../assets/icons/linkedIN.svg' ) no-repeat center center/contain;
}

.social-icon.instagram::before {
    background: url('../assets/icons/Instagram.svg' ) no-repeat center center/contain;
}

.social-icon.facebook::before {
    background: url('../assets/icons/facebook.svg' ) no-repeat center center/contain;
}

.social-icon.tiktok::before {
    background: url('../assets/icons/tiktok.svg' ) no-repeat center center/contain;
}

.platform-badge {
    font-size: 12px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--dark-bg);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px;
    margin: 60px 0 40px;
    justify-content: center;
}

.feature-card {
    background: #090912;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    height: 362px;
    width: 256px;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 28px;
    width: 200px;
    margin: 0 auto;
    line-height: 0.9;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.4;
    overflow-y: auto;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 120px 0;
    background: url('../assets/images/grid.png') no-repeat center center/cover;
}

.dashboard-mockup {
    padding: 60px;
    margin-top: 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-content {
    text-align: center;
}

.dashboard-text {
    font-size: 20px;
    color: var(--text-gray);
}

/* Target Audience Section */
.target-audience {
    padding: 120px 0;
    background: var(--dark-bg);
}

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

.audience-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    margin-bottom: 20px;
}

.audience-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.audience-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-y: auto;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-color: #030615;
    margin: 0 10%;
    height: 563px;
    border-radius: 20px;
    /* width: ; */
    /* background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.15) 0%, transparent 70%); */
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

/* All Features Section */
.all-features {
    padding: 120px 0;
    background: var(--dark-bg);
    text-align: center;
}

.all-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0 40px;
}

.all-feature-card {
    background: #03061580;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: left;
    
    transition: transform 0.3s;
}

.all-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
}

.all-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.all-feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-y: auto;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
}

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

.pricing-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    background: rgba(147, 51, 234, 0.1);
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-desc {
    font-size: 16px;
    color: white;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 15px;
    color: white;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-size: 20px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 30px;
}

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

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

.footer-tagline {
    font-size: 16px;
    color: var(--text-gray);
    margin: 20px 0 30px;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    font-size: 16px;
}

.footer-newsletter input::placeholder {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {

  
    
     .box-border-around-section {
        margin: 10px 10px; 
   
    }
   

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing:-4px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title span {
        font-size: 30px;
        letter-spacing: -2px;
        /* line-height: 1; */
     
    }

 .elipse-1{
     display: none;
 }

.elipse-2 {
   display: none;
 

}

    .dashboard-mockup{
       padding: 0;
        margin-top: 40px;
        min-height: 300px;
        
    }
    
     .dashboard-mockup img {
      width: 100%;
        
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter input {
   
    max-width: 220px ;
 
}
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-title,
.step,
.video-card,
.feature-card,
.pricing-card {
    animation: fadeIn 0.8s ease-out;
}
