* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #121212 100%);
    color: #fff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre a logo e o texto */
}

.logo img {
    height: 65px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 2.3em; /* Tamanho do texto */
    font-weight: 600; /* Peso da fonte */
    color: #fff; /* Cor do texto */
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6200;
}

.sign-in {
    background: linear-gradient(90deg, #ff6200, #ff8c00);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 98, 0, 0.4);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 60px;
    min-height: 85vh;
    animation: fadeIn 1s ease forwards;
}

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

.hero-content {
    max-width: 50%;
    color: #fff;
}

.hero h1 {
    font-size: 4.5em;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    background-clip: text;
    -webkit-text-fill-color: unset;
}

.hero p {
    font-size: 1.3em;
    color: #999;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(90deg, #ff6200, #ff8c00);
    color: #1a1a1a;
    padding: 15px 65px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 98, 0, 0.5);
}

.hero-image img {
    height: 300px;
    filter: drop-shadow(0 10px 20px rgba(255, 98, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.benefits, .steps, .advantages {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 60px;
    flex-wrap: wrap;
}

.benefit-card, .step-card, .advantage-card {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.benefit-card:hover, .step-card:hover, .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card h3, .step-card h3, .advantage-card h3 {
    color: #ff6200;
    margin-bottom: 15px;
    font-size: 1.5em; /* Ajuste o tamanho da fonte para consistência */
}
.benefit-card p {
    color: #ccc;
    font-size: 1.2em; /* Ajuste o tamanho da fonte para consistência */
}
.content {
    padding: 80px 60px;
    text-align: center;
}

.content h1 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-weight: 600;
}

.content h2 {
    font-size: 2em;
    margin: 30px 0;
    color: #ff6200;
}

.content p {
    font-size: 1.2em;
    color: #999;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section {
    text-align: center;
    padding: 60px 20px;
    background: none;
    color: #fff;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-link img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: #ff6200;
    color: #fff;
} 


.social-links a {
    color: #ff6200;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

footer {
    background: #1a1a1a;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #2a2a2a;
}

/* About Hero Section */
.about-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    gap: 40px;
}

.about-hero-content {
    max-width: 50%;
    color: #fff;
}

.about-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ff6200;
}

.about-hero p {
    font-size: 1.2em;
    color: #ccc;
}

.about-hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* About Details Section */
.about-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px;
    flex-wrap: wrap;
}

.about-card {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-card h2 {
    color: #ff6200;
    margin-bottom: 15px;
}

.about-card p {
    color: #ccc;
    font-size: 1em;
}

/* About Fees, Consulting, and P2P Sections */
.about-fees {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    color: #1a1a1a;
}

.about-fees h2 {
    font-size: 2.5em;
    color: #ccc;
    margin-bottom: 10px;
}

.about-fees p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.fees-grid {
    display: flex; /* Altere de grid para flexbox */
    justify-content: center; /* Centraliza os itens horizontalmente */
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
    gap: 20px; /* Espaçamento entre os itens */
    max-width: 1200px;
    margin: 0 auto; 
}

.fee-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: middle; 
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.fee-card h3 {
    font-size: 1.5em;
    color: #ff6200;
    margin-bottom: 10px;
    padding-bottom: 5px; /* Espaçamento interno abaixo do título */
    border-bottom: 1px groove #666; /* Linha fina como divisor */
}


.fee-card p {
    font-size: 1.1em;
    color: #ccc;
}

.fee-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: #ccc;
}

.fee-card ul li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.about-consulting, .about-p2p {
    padding: 60px;
    text-align: center;
    background: #1a1a1a;
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
}

.about-consulting h2, .about-p2p h2 {
    font-size: 2.5em;
    color: #ff6200;
    margin-bottom: 15px;
}

.about-consulting p, .about-p2p p {
    color: #ccc;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.telegram-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff6200, #ff6200);
    color: #2a2a2a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.5);
}

/* Telegram Section */

.telegram-section {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    color: #fff;
}

.telegram-section h2 {
    font-size: 2.5em;
    color: #ff6200;
    margin-bottom: 15px;
}

.telegram-section p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 5px;
    line-height: 1.8;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2a2a2a;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6200;
    color: #2a2a2a;
    font-size: 1.5em;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 1;
}

.step p {
    font-size: 1.1em;
    color: #fff;
    margin: 0;
}

.telegram-button {
    display: inline-block;
    background: #ff6200;
    color: #2a2a2a;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.telegram-button:hover {
    background: #e55a00;
    transform: translateY(-3px);
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(26, 26, 26, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

/*Logo*/
header .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre a logo e o texto */
}
header .logo-text {
    font-size: 2.1em; /* Tamanho do texto */
    font-weight: 600; /* Peso da fonte */
    color: #fff; /* Cor do texto */
}
header .logo img {
    height: 50px;
}

/* Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu */
nav#mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

nav#mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    margin: 10px 0;
    text-align: center;
}

nav#mobile-menu a:hover {
    color: #ff6200;
}

/* Show Menu on Click */
nav#mobile-menu.active {
    display: flex;
}
.support-link {
    color: #ccc; /* Cor do link */
    text-decoration: none; /* Remove o sublinhado */
    font-weight: bold;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #e55a00; /* Cor ao passar o mouse */
    text-decoration: underline; /* Adiciona sublinhado ao hover */
}

/* Estilos para Versão Web */
@media (min-width: 769px) {
    .menu-icon {
        display: none;
    }

    nav {
        display: flex;
        gap: 25px;
    }

    nav a {
        color: #ccc;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1em;
        transition: color 0.3s ease;
    }

    nav a:hover {
        color: #ff6200;
    }
}
/* Estilos para Versão Mobile */
@media (max-width: 768px) {
    header {
        justify-content: center;
    }
    
    .logo-text {
        display: none; /* Esconde o texto "Fswap" na versão mobile */
    }

    .menu-icon {
        display: flex; /* Mostra o ícone de menu na versão mobile */
        position: absolute;
        right: 20px;
    }

    nav {
        display: none; /* Esconde o menu padrão na versão mobile */
    }
}
    
/* Responsividade Geral */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: start;
        padding: 60px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 4em;
    }

    .hero p {
        font-size: 1.2em;
    }
    

    .cta-button {
        display: block;
        margin: 20px auto;
        padding: 12px 20px;
        font-size: 1.1em;
        text-align: center;
    }
    
    .hero-image img {
        height: 200px;
        margin-top: 50px;
    }

    /* About Hero Section */
    .about-hero {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }

    .about-hero-content {
        text-align: center;
    }
    .about-hero-content p {
        text-align: justify;
    }
    .about-hero h1 {
        font-size: 2.5em;
    }

    .about-hero p {
        font-size: 1.2em;
    }

    .about-hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .fees-grid {
        display: flex; /* Altere de grid para flexbox */
        flex-direction: column; /* Organize os itens em coluna */
        align-items: center; /* Centralize os itens horizontalmente */
        gap: 20px; /* Espaçamento entre os cards */
    }

    .fee-card {
        width: 90%; /* Ajuste a largura para caber melhor na tela */
        max-width: 300px; /* Limite a largura máxima */
    }
    
    /* Contact Form */
    .contact-section {
        text-align: center;
        padding: 60px 20px;
        background: none;
        color: #fff;
    }
    
    .contact-section h2 {
        font-size: 2.5em;
        color: #ccc;
        margin-bottom: 20px;
    }
    
    .contact-section p {
        font-size: 1.2em;
        color: #666;
        margin-bottom: 40px;
    }
    
    .contact-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: #2a2a2a;
        color: #fff;
        text-decoration: none;
        padding: 20px;
        border-radius: 15px;
        width: 200px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .contact-link img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .contact-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        background: #ff6200;
        color: #fff;
    }

    /* Footer */
    footer {
        padding: 20px 10px;
    }

    footer p {
        font-size: 0.9em;
    }
}

/* Seção Em Construção */
.construction-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    text-align: center;
    padding: 60px 20px;
    background: none;
    color: #fff;
    min-height: 100vh; /* Garante que a seção ocupe toda a altura da tela */
}

.construction-content {
    max-width: 600px; /* Limita a largura do conteúdo */
    margin: 0 auto; /* Centraliza horizontalmente */
}

.construction-content h1 {
    font-size: 2.5em;
    color: #ff6200;
    margin-bottom: 10px;
}

.construction-content p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6; /* Melhora a legibilidade */
}

.construction-image {
    max-width: 300px;
    margin-bottom: 20px;
}

.cta-button-cons {
    display: inline-block;
    background: #ff6200;
    color: #2a2a2a;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button-cons:hover {
    background: #e55a00;
    transform: translateY(-3px);
}
