* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    background: #f1f6f4;
    height: 100vh;
    overflow: hidden;
}

h1 {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}


/* Header */

.desktop-logo {
    /* border: 1px solid blue; */
    margin: 0 0 30px -010px; /* alinhamento do logo */
    display: block;
}

/* Main Content */
.main-content {
    /* border: 1px solid rgb(255, 0, 191); */
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px;
    text-align: left;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-label {
    /* border: 1px solid blue; */
    color: #ff9932;
    font-family: "Sora", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.main-title {
    /* border: 1px solid blue; */
    font-size: clamp(48px, 8vw, 80px);
    color: #114c5a;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.subtitle {
    /* border: 1px solid blue; */
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9932;
    text-align: left;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.cta-buttons {
    /* border: 1px solid blue; */ 
    display: flex;
    gap: 15px;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.btn-open { 
    font-family: "Sora", sans-serif;
    background-color: #d9e8e2;
    color: white;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 0 100px 100px 0;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close { 
    font-family: "Sora", sans-serif;
    background-color: #d9e8e2;
    color: white;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 100px 0 0 100px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn-primary {    
    font-family: "Sora", sans-serif;
    background-color: #d9e8e2;
    color: white;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #114c5a;
    transform: translateY(-3px);
}

.btn-open:hover {
    background-color: #114c5a;
    transform: translateY(-3px);
}

.btn-close:hover {
    background-color: #114c5a;
    transform: translateY(-3px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromSide {
    from {
        opacity: 0;
        transform: translateX(var(--slide-direction, 0));
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}


.animated-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out 1.8s forwards;
}