@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    outline: none;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 5;
    height: 4.7rem;
    padding-top: 1rem;

}

.logo h1 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: bold;
}

.logo span {
    color: #FFA500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 2.5rem);
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    transition: color 0.3s;
    font-weight: 500;
}

nav a.active {
    color: #FFA500;
    position: relative;
}

nav a.active::after {
    content: '•';
    position: absolute;
    color: #FFA500;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

nav a:hover {
    color: #FFA500;
}

.hero {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    margin-bottom: 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 100%;
    background-image: url('img/gabriel222.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%) contrast(1.2);
    z-index: 2;
    transition: left 0.3s ease;
}

.ola {
    color: black;
    font-size: clamp(5rem, 4vw, 4rem);
    letter-spacing: 8px;
    position: absolute;
    left: 29%;
    top: 30%;
    transform: translateY(-50%);
    z-index: 1;
    white-space: nowrap;
    text-shadow:
        2px 2px 0px rgb(255, 255, 255),
        -2px -2px 0px rgb(255, 255, 255),
        2px -2px 0px rgb(255, 255, 255),
        -2px 2px 0px rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    transition: left 0.3s ease;
}

.hero-content {
    position: absolute;
    z-index: 7;
    right: 8%;
    top: 59%;
    transform: translateY(-50%);
    text-align: left;
    width: 100%;
    max-width: 550px;
    padding: 0 10px;
    transition: left 0.3s ease;
}

.hero-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding-right: 70px;
    display: inline-block;
    text-align: left;
}

.hero-content h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: #FFA500;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.desenvolvedor {
    font-size: clamp(3rem, 3.5vw, 3.5rem);
    color: #FFA500;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1;
    position: relative;
    background: linear-gradient(to right, orange, blue);
    /* Gradiente de cor */
    -webkit-background-clip: text;
    /* Faz o fundo ser aplicado apenas ao texto */
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Faz o texto ser transparente */
}

.iama {
    text-align: start;
    z-index: 7 !important;
}

.services {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 2.5rem 5%;
    background: transparent;
    backdrop-filter: blur(10px);

}

.service-card {
    flex: 1;
    padding: 2rem;
    max-width: 350px;
    position: relative;
}

.service-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    line-height: 1.6;
}

#container-habilidades {
    display: flex;
    gap: 1rem;
    width: 90%;
    /* 
    border: 1px solid red; */

}

#img-container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #ffffff;
}

.btn {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    color: #fff;
}

/* Media Queries para Responsividade */
@media (min-width: 1223px) {
    .hero-content {
        top: 83%;
    }
}

@media (max-width: 1233px) {
    .ola {
        left: 13% !important;
    }
}

@media (max-width: 1002px) {
    .ola {
        left: 16% !important;
    }
}


@media (max-width: 1024px) {
    .hero::before {
        width: 40%;
        height: 70%;
    }

    .ola {
        left: 20%;
    }

    .services {
        padding: 1.5rem 3%;
    }

    .service-card {
        padding: 1.5rem;
    }

    .hero-content {
        margin-top: 20vh;
        text-align: left;
    }
}

@media (max-width: 769px) {
    header {
        flex-direction: row;
        padding: 1.5rem 5%;
        justify-content: space-between;
    }

    .menu-btn {
        display: block !important;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all .3s ease-in-out;
        z-index: 2;
    }

    .nav-menu.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    nav a {
        font-size: 1.5rem;
    }

    /* Ajustes do Hero para mobile */
    .hero {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding-top: 4rem;
    }

    .hero::before {
        width: 70%;
        height: 50%;
        top: 48%;
        transform: translate(-50%, -50%);
        opacity: 1;
        left: 44%;
        z-index: 4;
        margin-bottom: 2rem;
    }

    .ola {
        position: absolute;
        right: 5% !important;
        top: 25%;
        transform: none;
        width: auto;
        text-align: left;
        font-size: clamp(3rem, 8vw, 4rem);
        z-index: 3;
    }

    .hero-content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: left;
        padding: 0 1rem;
        margin: 0 auto;
        margin-top: 56vh;
    }

    .hero-content h3 {
        padding-right: 70px;
        display: inline-block;
        text-align: left;
        margin-bottom: 1rem;
    }

    .hero-content h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 4px;
        background: #FFA500;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: block;
    }

    .desenvolvedor {
        font-size: clamp(2rem, 6vw, 3rem);
        text-align: start;
    }

    .iama {
        text-align: left;
    }

    .services {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    .service-card {
        width: 100%;
        text-align: center;
    }

    .service-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero::before {
        width: 85%;
        height: 40%;
        left: 60%;
    }

    .ola {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        left: 10%;
        top: 25%;
        z-index: 3;
    }

    .hero-content {
        margin-top: 40vh;
        text-align: left;
    }

    .hero-content h3 {
        padding-right: 70px;
    }

    .hero-content h3::after {
        display: block;
        width: 50px;
    }

    .iama {
        text-align: left;
    }
}

.menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 3;
}

.menu-btn__burger {
    width: 100%;
    height: 100%;
    background-image: url('img/menu-hamburguer.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s ease-in-out;
}

/* Removendo os pseudo-elementos que não são mais necessários */
.menu-btn__burger::before,
.menu-btn__burger::after {
    display: none;
}

/* Animação do Menu */
.menu-btn.open .menu-btn__burger {
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .hero::before {
        width: 85%;
        height: 40%;
    }

    .hero-content {
        margin-top: 50vh;
        text-align: left;
    }

    .hero-content h3 {
        padding-right: 70px;
    }

    .hero-content h3::after {
        display: block;
        width: 50px;
    }

    .iama {
        text-align: left;
    }
}

.publico-alvo1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(180deg, #0b1b33 0%, #000 100%);
}

.publico-alvo1 h2 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}


/* Seção Público Alvo */
.publico-alvo {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(180deg, #0b1b33 0%, #000 100%)
}




.publico-alvo h2 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.publico-alvo p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #8892B0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
    margin-bottom: -1rem;
}

.target-card {
    background: rgba(2, 12, 27, 0.7);
    border-radius: 10px;
    height: 360px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #FFA500;
}

.target-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.target-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.target-card h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: #FFA500;
    font-family: "Poppins", sans-serif;
}

.target-card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #8892B0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .target-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Seção Professor */
.professor {
    padding: 3rem 5%;
    background: linear-gradient(180deg, #000 0%, #0b1b33 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.professor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.professor-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: black;
}

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

.professor-info {
    background: rgba(2, 12, 27, 0.7);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.professor-info h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.professor-info h3 span {
    font-size: 2rem;
}

.professor-info p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #8892B0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .professor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .professor-img {
        max-width: 400px;
        margin: 0 auto;
    }

    .professor-info {
        text-align: center;
    }

    .professor-info h3 {
        justify-content: center;
    }
}

/* Botão Começar Agora */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(145deg, #141414, #000000);
    border-radius: 50px;
    text-decoration: none;
    overflow: visible;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(32, 156, 255, 0.3),
        0 0 30px rgba(32, 156, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: conic-gradient(from var(--angle),
            #000,
            #000,
            #000,
            #209cff,
            #68e0ff,
            #209cff,
            #000,
            #000,
            #000);
    border-radius: 50px;
    animation: rotate-border 3s linear infinite;
    z-index: 1;
    filter: blur(1px) brightness(1.8);
}

/* Reflexo externo da luz */
.cta-button::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: conic-gradient(from var(--angle),
            transparent,
            transparent,
            transparent,
            rgba(32, 156, 255, 0.1),
            rgba(104, 224, 255, 0.2),
            rgba(32, 156, 255, 0.1),
            transparent,
            transparent,
            transparent);
    border-radius: 60px;
    animation: rotate-border 3s linear infinite;
    z-index: 0;
    filter: blur(8px);
}

/* Fundo do botão */
.cta-button .background {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(145deg, #141414, #000000);
    border-radius: 49px;
    z-index: 2;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* Reflexo interno dinâmico */
.cta-button .background::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from var(--angle),
            transparent,
            transparent,
            transparent,
            rgba(32, 156, 255, 0.03),
            rgba(104, 224, 255, 0.05),
            rgba(32, 156, 255, 0.03),
            transparent,
            transparent,
            transparent);
    animation: rotate-border 3s linear infinite;
    filter: blur(8px);
}

.cta-button .dots {
    content: '';
    position: absolute;
    inset: 1px;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, transparent 0%, rgba(32, 156, 255, 0.03) 50%, transparent 100%);
    background-size: 4px 4px, 100% 100%;
    background-position: 0 0, 0 0;
    border-radius: 49px;
    z-index: 3;
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 4;
    color: #fff;
    text-shadow: 0 0 10px rgba(32, 156, 255, 0.5);
    font-size: 1.3rem;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

.cta-button:hover {
    color: white;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;


}

.cta-button:hover::before {
    filter: brightness(2.2);
}

.cta-button:hover::after {
    filter: blur(12px) brightness(1.2);
    background-color: #380056;
    transition: 0.8s;
}

.light-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

.light-effect::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from var(--angle),
            transparent 0%,
            transparent 40%,
            rgba(0, 149, 255, 0.1) 42%,
            rgba(0, 149, 255, 0.3) 43%,
            rgba(0, 149, 255, 0.5) 44%,
            rgba(0, 149, 255, 0.3) 45%,
            rgba(0, 149, 255, 0.1) 46%,
            transparent 48%,
            transparent 100%);
    animation: rotate 4s linear infinite;
    top: -25%;
    left: -25%;
    filter: blur(3px);
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    60% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.cta-button:hover .light-effect::before {
    animation: rotate 2s linear infinite;
}

.cta-button:hover .light-effect::after {
    opacity: 1;
}

/* Formulário */
.form-section {
    display: flex;
    flex-direction: column;
    padding: 1rem 5%;
    padding-bottom: 3rem;
    background: linear-gradient(180deg, #000 0%, #0A192F 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.905), rgba(0, 0, 130, 0.5)),
        url('img/outerspace-58.gif');
    background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px) brightness(0.3);
    z-index: 0;
}

.form-section h2 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 2.5vw, 2.5rem);
    padding: 4rem;
    z-index: 3;
}

.form-section p {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #b5b3b3;
    word-spacing: 1px;
    letter-spacing: 0.6px;
    line-height: 1.3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(3, 19, 43, 0.63);
    padding: 2.5rem;
    padding-bottom: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #8892B0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(32, 156, 255, 0.5);
    box-shadow: 0 0 15px rgba(32, 156, 255, 0.2);
}

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

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
}

.form-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    margin-top: 0.2rem;
}

.form-checkbox:checked {
    background: #209cff;
    border-color: #209cff;
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: #fff;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-checkbox-label {
    color: #8892B0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

.form-checkbox-label a {
    color: #209cff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-checkbox-label a:hover {
    color: #68e0ff;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #0b4f87, #68e0ff);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 156, 255, 0.3);
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }

    .cta-button span {
        position: relative;
        z-index: 4;
        color: #fff;
        text-shadow: 0 0 10px rgba(32, 156, 255, 0.5);
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #FFA500;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo h2 {
    font-size: clamp(1.8rem, 2vw, 2rem);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.footer-logo span {
    color: #FFA500;
}

.footer-logo p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFA500;
    transform: translateY(-3px);
}

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

.footer-links h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #FFA500;
    padding-left: 5px;
    cursor: default;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        margin: 0 auto;
        justify-content: center;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Necessário para posicionar o gradiente */
}

.carousel {
    display: flex;
    width: max-content;
    animation: scroll var(--animation-duration) linear infinite;
}

.card {
    min-width: 200px;
    height: 150px;
    margin: 10px;
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 1s ease;
}

/* Animação contínua */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-distance));
    }
}

.whats {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    z-index: 2;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.whats:hover {
    transform: scale(1.20);
}