* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Beach-inspired color palette */
:root {
    --sky-blue: #87CEEB;
    --ocean-blue: #4A90E2;
    --sand-beige: #F4E4C1;
    --sun-yellow: #FFD966;
    --coral: #FF6B6B;
    --sea-green: #2ECC71;
    --white: #FFFFFF;

    /* Tailwind v4 inspired shadows and spacing */
    --shadow-sm: 2px 3px 5px 0px rgba(0, 0, 0, 0.12), 2px 1px 2px -1px rgba(0, 0, 0, 0.12);
    --shadow-md: 2px 3px 5px 0px rgba(0, 0, 0, 0.12), 2px 2px 4px -1px rgba(0, 0, 0, 0.12);
    --shadow-lg: 2px 3px 5px 0px rgba(0, 0, 0, 0.12), 2px 4px 6px -1px rgba(0, 0, 0, 0.12);
    --shadow-xl: 2px 3px 5px 0px rgba(0, 0, 0, 0.12), 2px 8px 10px -1px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 2px 3px 5px 0px rgba(0, 0, 0, 0.30);
    --radius: 0.375rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sand-beige) 100%);
    overflow: visible;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: auto;
}

.hero .container {
    padding-top: 140px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 6000;
    width: 100%;
}

.logo {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
    animation: logo-entrance 1s ease-out forwards, logo-rotate 2s ease-in-out 1s infinite;
}

@keyframes logo-entrance {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.description-row {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.hero-image {
    flex-shrink: 0;
    width: 350px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-2xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
    /* animation: water-distortion 6s ease-in-out infinite; */
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(74, 144, 226, 0.2);
}



/* Text Section */
.hero-text {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 0;
    text-align: left;
    font-weight: 500;
    flex: 1;
}

.description strong {
    font-weight: 700;
    color: var(--ocean-blue);
    font-size: 1.98rem;
}

.hero-paragraph {
    display: block;
    margin-top: 10px;
}

.ethics {
    font-size: 1.5rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.2s ease-in-out;
}

.ethics:hover {
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.ethics strong {
    font-weight: 700;
    font-size: 1.65rem;
}

/* Downloads Section */
.downloads-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.download-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.download-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

.download-label .highlight-word {
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--sea-green);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.store-button {
    transition: all 0.2s ease-in-out;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.store-button img {
    height: 84px;
    width: auto;
    border-radius: var(--radius);
}

.store-button:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.donate-button {
    display: inline-block;
    transition: all 0.2s ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.donate-button img {
    height: 98px;
    width: auto;
    border-radius: var(--radius);
}

.donate-button:hover {
    transform: scale(1.06) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

/* Sun Container */
.sun-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5000;
    overflow: visible;
}

.sun {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 50px rgba(255, 217, 102, 0.7));
    animation: sun-rotate 1s ease-in-out infinite;
    cursor: pointer;
    pointer-events: auto;
}

/* Bees Container */
.bees-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 10000;
    overflow: visible;
}

.floating {
    position: absolute;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes sun-rotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }
}

.bee {
    width: 80px;
    cursor: pointer;
    pointer-events: auto;
    position: fixed;
}

.bee-1 {
    animation: bee-flight-1 6s infinite ease-in-out;
}

.bee-2 {
    animation: bee-flight-2 7s infinite ease-in-out;
    animation-delay: -3.5s;
}

/* Animations */
@keyframes logo-rotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animações das abelhas - rápidas e nervosas */
@keyframes bee-flight-1 {
    0% {
        top: 10%;
        left: 5%;
        transform: rotate(15deg);
    }

    12% {
        top: 20%;
        left: 30%;
        transform: rotate(-12deg);
    }

    25% {
        top: 35%;
        left: 50%;
        transform: rotate(18deg);
    }

    37% {
        top: 25%;
        left: 70%;
        transform: rotate(-15deg);
    }

    50% {
        top: 45%;
        left: 85%;
        transform: rotate(10deg);
    }

    62% {
        top: 65%;
        left: 65%;
        transform: rotate(-20deg);
    }

    75% {
        top: 70%;
        left: 40%;
        transform: rotate(12deg);
    }

    87% {
        top: 50%;
        left: 15%;
        transform: rotate(-10deg);
    }

    100% {
        top: 10%;
        left: 5%;
        transform: rotate(15deg);
    }
}

@keyframes bee-flight-2 {
    0% {
        top: 60%;
        left: 80%;
        transform: rotate(-18deg);
    }

    14% {
        top: 45%;
        left: 60%;
        transform: rotate(14deg);
    }

    28% {
        top: 30%;
        left: 75%;
        transform: rotate(-16deg);
    }

    42% {
        top: 15%;
        left: 50%;
        transform: rotate(20deg);
    }

    56% {
        top: 25%;
        left: 25%;
        transform: rotate(-12deg);
    }

    70% {
        top: 50%;
        left: 10%;
        transform: rotate(15deg);
    }

    84% {
        top: 70%;
        left: 35%;
        transform: rotate(-14deg);
    }

    100% {
        top: 60%;
        left: 80%;
        transform: rotate(-18deg);
    }
}

.fade-in {
    animation: fade-in 1s ease-out;
}

.slide-in-left {
    animation: slide-in-left 1s ease-out;
}

.slide-in-right {
    animation: slide-in-right 1s ease-out;
}

/* Decorative Divider */
.decorative-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--sand-beige) 100%);
}

.hero+.decorative-divider {
    margin-top: 0;
    position: relative;
    z-index: 100;
}

.decorative-divider svg {
    display: block;
    animation: divider-pulse 3s ease-in-out infinite;
}

@keyframes divider-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.decorative-divider circle {
    animation: circle-float 4s ease-in-out infinite;
}

.decorative-divider circle:nth-child(1) {
    animation-delay: 0s;
}

.decorative-divider circle:nth-child(2) {
    animation-delay: -0.5s;
}

.decorative-divider circle:nth-child(3) {
    animation-delay: -1s;
}

.decorative-divider circle:nth-child(4) {
    animation-delay: -1.5s;
}

.decorative-divider circle:nth-child(5) {
    animation-delay: -2s;
}

@keyframes circle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.decorative-divider line {
    animation: line-shimmer 2s ease-in-out infinite;
}

@keyframes line-shimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Screenshot Carousel Section */
.screenshot-section {
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--sand-beige) 100%);
    padding: 10px 20px 10px 20px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.screenshot-title {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.screenshot-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    perspective: 1500px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.screenshot-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 280px;
    aspect-ratio: 9 / 16;
    margin-left: -140px;
    margin-top: -248px;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
    transform: translateX(0) translateZ(-400px) rotateY(0deg) scale(0.8);
    border: 5px solid #654321;
    padding: 5px;
    background: linear-gradient(145deg, #654321, #4A2F1A);
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.screenshot-card.active {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    z-index: 10;
}

.screenshot-card.prev {
    opacity: 0.6;
    transform: translateX(-350px) translateZ(-200px) rotateY(25deg) scale(0.85);
    z-index: 5;
}

.screenshot-card.next {
    opacity: 0.6;
    transform: translateX(350px) translateZ(-200px) rotateY(-25deg) scale(0.85);
    z-index: 5;
}

.screenshot-card.far-prev {
    opacity: 0.3;
    transform: translateX(-600px) translateZ(-350px) rotateY(35deg) scale(0.7);
    z-index: 1;
}

.screenshot-card.far-next {
    opacity: 0.3;
    transform: translateX(600px) translateZ(-350px) rotateY(-35deg) scale(0.7);
    z-index: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(74, 144, 226, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--ocean-blue);
    transform: scale(1.3);
    border-color: var(--sea-green);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--sky-blue) 100%);
    padding: 40px 20px 80px;
    position: relative;
    z-index: 100;
}

.contact-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.company-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-2xl);
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: logo-float 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.contact-title {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto 0 auto;
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 50px 60px;
    border-radius: calc(var(--radius) * 2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    border: 2px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(20px) saturate(1.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.25rem;
    color: var(--ocean-blue);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
    padding-left: 12px;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--ocean-blue), var(--sea-green));
    border-radius: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.15rem;
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: var(--radius);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2C3E50;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 0 0 0 rgba(74, 144, 226, 0);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow:
        0 4px 16px rgba(74, 144, 226, 0.15),
        0 2px 6px rgba(74, 144, 226, 0.1),
        0 0 0 4px rgba(74, 144, 226, 0.08);
    transform: translateY(-2px) scale(1.005);
    background: white;
}

.form-group select {
    cursor: pointer;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 62, 80, 0.4);
    font-style: italic;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(74, 144, 226, 0.5);
}

/* Subject Button Radio Styles */
.subject-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.subject-buttons input[type="radio"] {
    display: none;
}

.subject-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(74, 144, 226, 0.25);
    border-radius: var(--radius);
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 0;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 0 0 0 rgba(74, 144, 226, 0);
    position: relative;
    overflow: hidden;
}

.subject-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.subject-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 20px rgba(74, 144, 226, 0.2),
        0 4px 8px rgba(74, 144, 226, 0.15),
        0 0 0 4px rgba(74, 144, 226, 0.05);
    border-color: var(--ocean-blue);
}

.subject-buttons input[type="radio"]:checked+.subject-btn {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    border-color: var(--sea-green);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 12px 28px rgba(74, 144, 226, 0.35),
        0 6px 12px rgba(46, 204, 113, 0.2),
        0 0 0 5px rgba(74, 144, 226, 0.1);
}

.subject-buttons input[type="radio"]:checked+.subject-btn::before {
    opacity: 1;
}

.btn-icon {
    font-size: 1.5rem;
    filter: grayscale(0.4) brightness(1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.subject-btn:hover .btn-icon {
    transform: scale(1.1);
}

.subject-buttons input[type="radio"]:checked+.subject-btn .btn-icon {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: scale(1.15);
}

.btn-text {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.subject-buttons input[type="radio"]:checked+.subject-btn .btn-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.submit-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.submit-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
    position: relative;
}

.submit-button img {
    height: 141px;
    width: auto;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.submit-button:hover img {
    border-radius: calc(var(--radius) * 1.5);
}

.submit-button:hover {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 12px 28px rgba(74, 144, 226, 0.3)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.submit-button:active {
    transform: scale(1.02) translateY(-1px);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.submit-message {
    font-size: 1.35rem;
    color: var(--ocean-blue);
    font-weight: 700;
    max-width: 250px;
    line-height: 1.6;
    text-align: left;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
}

/* Sailors Container */
.sailors-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: auto;
    z-index: 8000;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.sailor {
    height: 225px;
    width: auto;
    position: absolute;
    bottom: -240px;
    transform-origin: bottom center;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.sailor-1 {
    left: 10%;
    animation: sailor-peek-1 12s ease-in-out infinite, sailor-breathe 2.8s ease-in-out infinite;
}

.sailor-2 {
    left: 25%;
    animation: sailor-peek-2 13s ease-in-out infinite, sailor-breathe 3.2s ease-in-out infinite;
}

.sailor-3 {
    left: 40%;
    animation: sailor-peek-3 14s ease-in-out infinite, sailor-breathe 2.9s ease-in-out infinite;
}

.sailor-4 {
    left: 55%;
    animation: sailor-peek-4 11s ease-in-out infinite, sailor-breathe 3.1s ease-in-out infinite;
}

.sailor-5 {
    left: 70%;
    animation: sailor-peek-5 15s ease-in-out infinite, sailor-breathe 3s ease-in-out infinite;
}

.sailor-6 {
    left: 85%;
    animation: sailor-peek-6 13.5s ease-in-out infinite, sailor-breathe 2.85s ease-in-out infinite;
}

/* Sailor Peek Animations - cada um com timing diferente */
@keyframes sailor-peek-1 {
    0% {
        bottom: -240px;
    }

    8% {
        bottom: -20px;
    }

    25% {
        bottom: -20px;
    }

    33% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-peek-2 {

    0%,
    15% {
        bottom: -240px;
    }

    23% {
        bottom: -20px;
    }

    38% {
        bottom: -20px;
    }

    46% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-peek-3 {

    0%,
    30% {
        bottom: -240px;
    }

    38% {
        bottom: -20px;
    }

    52% {
        bottom: -20px;
    }

    60% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-peek-4 {

    0%,
    10% {
        bottom: -240px;
    }

    18% {
        bottom: -20px;
    }

    45% {
        bottom: -20px;
    }

    53% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-peek-5 {

    0%,
    40% {
        bottom: -240px;
    }

    48% {
        bottom: -20px;
    }

    62% {
        bottom: -20px;
    }

    70% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-peek-6 {

    0%,
    55% {
        bottom: -240px;
    }

    63% {
        bottom: -20px;
    }

    78% {
        bottom: -20px;
    }

    86% {
        bottom: -240px;
    }

    100% {
        bottom: -240px;
    }
}

@keyframes sailor-breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Plants Container */
.plants-container {
    position: fixed;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 180px;
    pointer-events: none;
    z-index: 7000;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.plant {
    height: 120px;
    width: auto;
    transform-origin: bottom center;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.plant-1 {
    animation: plant-sway-1 4s ease-in-out infinite;
    animation-delay: 0s;
    height: 90px;
}

.plant-2 {
    animation: plant-sway-2 4.5s ease-in-out infinite;
    animation-delay: -1s;
    height: 140px;
}

.plant-3 {
    animation: plant-sway-1 5s ease-in-out infinite;
    animation-delay: -2s;
    height: 110px;
}

.plant-4 {
    animation: plant-sway-2 4.2s ease-in-out infinite;
    animation-delay: -0.5s;
    height: 125px;
}

.plant-5 {
    animation: plant-sway-1 4.8s ease-in-out infinite;
    animation-delay: -1.5s;
    height: 155px;
}

.plant-6 {
    animation: plant-sway-2 5.2s ease-in-out infinite;
    animation-delay: -2.5s;
    height: 80px;
}

.plant-7 {
    animation: plant-sway-1 4.6s ease-in-out infinite;
    animation-delay: -3s;
    height: 130px;
}

.plant-8 {
    animation: plant-sway-2 4.4s ease-in-out infinite;
    animation-delay: -3.5s;
    height: 95px;
}

.plant-9 {
    animation: plant-sway-1 4.3s ease-in-out infinite;
    animation-delay: -0.8s;
    height: 135px;
}

.plant-10 {
    animation: plant-sway-2 4.7s ease-in-out infinite;
    animation-delay: -1.2s;
    height: 105px;
}

.plant-11 {
    animation: plant-sway-1 5.1s ease-in-out infinite;
    animation-delay: -2.3s;
    height: 145px;
}

.plant-12 {
    animation: plant-sway-2 4.1s ease-in-out infinite;
    animation-delay: -0.3s;
    height: 85px;
}

.plant-13 {
    animation: plant-sway-1 4.9s ease-in-out infinite;
    animation-delay: -1.7s;
    height: 120px;
}

.plant-14 {
    animation: plant-sway-2 5.3s ease-in-out infinite;
    animation-delay: -2.8s;
    height: 100px;
}

.plant-15 {
    animation: plant-sway-1 4.4s ease-in-out infinite;
    animation-delay: -3.2s;
    height: 138px;
}

.plant-16 {
    animation: plant-sway-2 4.6s ease-in-out infinite;
    animation-delay: -0.6s;
    height: 108px;
}

.plant-17 {
    animation: plant-sway-1 5.0s ease-in-out infinite;
    animation-delay: -1.9s;
    height: 128px;
}

.plant-18 {
    animation: plant-sway-2 4.3s ease-in-out infinite;
    animation-delay: -2.1s;
    height: 92px;
}

.plant-19 {
    animation: plant-sway-1 4.8s ease-in-out infinite;
    animation-delay: -1.4s;
    height: 142px;
}

.plant-20 {
    animation: plant-sway-2 5.1s ease-in-out infinite;
    animation-delay: -2.6s;
    height: 88px;
}

.plant-21 {
    animation: plant-sway-1 4.5s ease-in-out infinite;
    animation-delay: -3.4s;
    height: 132px;
}

.plant-22 {
    animation: plant-sway-2 4.7s ease-in-out infinite;
    animation-delay: -0.9s;
    height: 112px;
}

.plant-23 {
    animation: plant-sway-1 4.2s ease-in-out infinite;
    animation-delay: -2.4s;
    height: 150px;
}

.plant-24 {
    animation: plant-sway-2 5.2s ease-in-out infinite;
    animation-delay: -1.1s;
    height: 82px;
}

.plant-25 {
    animation: plant-sway-1 4.1s ease-in-out infinite;
    animation-delay: -0.4s;
    height: 115px;
}

.plant-26 {
    animation: plant-sway-2 4.9s ease-in-out infinite;
    animation-delay: -1.8s;
    height: 137px;
}

.plant-27 {
    animation: plant-sway-1 4.6s ease-in-out infinite;
    animation-delay: -2.9s;
    height: 98px;
}

.plant-28 {
    animation: plant-sway-2 5.0s ease-in-out infinite;
    animation-delay: -0.7s;
    height: 122px;
}

.plant-29 {
    animation: plant-sway-1 4.4s ease-in-out infinite;
    animation-delay: -1.6s;
    height: 148px;
}

.plant-30 {
    animation: plant-sway-2 4.8s ease-in-out infinite;
    animation-delay: -2.2s;
    height: 86px;
}

.plant-31 {
    animation: plant-sway-1 4.3s ease-in-out infinite;
    animation-delay: -3.3s;
    height: 126px;
}

.plant-32 {
    animation: plant-sway-2 5.1s ease-in-out infinite;
    animation-delay: -1.0s;
    height: 102px;
}

.plant-33 {
    animation: plant-sway-1 4.7s ease-in-out infinite;
    animation-delay: -2.7s;
    height: 134px;
}

.plant-34 {
    animation: plant-sway-2 4.2s ease-in-out infinite;
    animation-delay: -0.2s;
    height: 94px;
}

.plant-35 {
    animation: plant-sway-1 5.2s ease-in-out infinite;
    animation-delay: -1.3s;
    height: 144px;
}

.plant-36 {
    animation: plant-sway-2 4.5s ease-in-out infinite;
    animation-delay: -2.0s;
    height: 104px;
}

.plant-37 {
    animation: plant-sway-1 4.9s ease-in-out infinite;
    animation-delay: -3.1s;
    height: 118px;
}

.plant-38 {
    animation: plant-sway-2 4.1s ease-in-out infinite;
    animation-delay: -0.9s;
    height: 96px;
}

.plant-39 {
    animation: plant-sway-1 4.6s ease-in-out infinite;
    animation-delay: -2.5s;
    height: 140px;
}

.plant-40 {
    animation: plant-sway-2 5.3s ease-in-out infinite;
    animation-delay: -1.4s;
    height: 84px;
}

.plant-41 {
    animation: plant-sway-1 4.4s ease-in-out infinite;
    animation-delay: -3.0s;
    height: 124px;
}

.plant-42 {
    animation: plant-sway-2 4.8s ease-in-out infinite;
    animation-delay: -0.5s;
    height: 110px;
}

.plant-43 {
    animation: plant-sway-1 5.0s ease-in-out infinite;
    animation-delay: -2.1s;
    height: 146px;
}

.plant-44 {
    animation: plant-sway-2 4.3s ease-in-out infinite;
    animation-delay: -1.5s;
    height: 91px;
}

.plant-45 {
    animation: plant-sway-1 4.7s ease-in-out infinite;
    animation-delay: -2.8s;
    height: 136px;
}

.plant-46 {
    animation: plant-sway-2 5.1s ease-in-out infinite;
    animation-delay: -0.6s;
    height: 106px;
}

.plant-47 {
    animation: plant-sway-1 4.2s ease-in-out infinite;
    animation-delay: -1.9s;
    height: 116px;
}

.plant-48 {
    animation: plant-sway-2 4.9s ease-in-out infinite;
    animation-delay: -3.2s;
    height: 152px;
}

/* Plant sway animations - simulating gentle wind */
@keyframes plant-sway-1 {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }
}

@keyframes plant-sway-2 {

    0%,
    100% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(-4deg);
    }

    70% {
        transform: rotate(4deg);
    }
}

/* Music Control Button */
.music-control-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2000;
}

.music-control {
    width: 70px;
    height: 70px;
    border-radius: calc(var(--radius) * 2);
    background: linear-gradient(135deg, var(--ocean-blue), var(--sea-green));
    border: 4px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.music-control:active {
    transform: scale(0.95);
}

.music-control svg {
    pointer-events: none;
}

.music-control .hidden {
    display: none;
}

.music-label {
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ocean-blue);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-button {
    padding: 6px 14px;
    border-radius: var(--radius);
    border: 2px solid white;
    background: linear-gradient(135deg, var(--sea-green), var(--ocean-blue));
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.language-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.language-button:active {
    transform: scale(0.95);
}

/* Bubble explosion animation */
.bubble {
    position: absolute;
    pointer-events: none;
    z-index: 1001;
    opacity: 1;
}

@keyframes bubble-explode {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Sun bounce animation - spring effect */
@keyframes sun-bounce {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.4);
    }

    40% {
        transform: scale(0.95);
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.sun.bouncing {
    animation: sun-bounce 0.6s ease-out !important;
}

/* Bounce wrapper for elements that need to maintain their position animations */
@keyframes bounce-scale {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.4);
    }

    40% {
        transform: scale(0.95);
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.bounce-wrapper {
    animation: bounce-scale 0.6s ease-out;
}

/* Wind Text Animation */
.wind-text-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.wind-text {
    position: absolute;
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.66rem;
    font-weight: 600;
    color: white;
    opacity: 0.4;
    white-space: nowrap;
    letter-spacing: 0.15em;
    display: inline-block;
}

.wind-text span {
    display: inline-block;
    animation: letter-wave 2s ease-in-out infinite;
}

@keyframes letter-wave {

    0%,
    100% {
        transform: translateY(0) scaleY(1);
    }

    25% {
        transform: translateY(-8px) scaleY(1.1);
    }

    50% {
        transform: translateY(0) scaleY(0.95);
    }

    75% {
        transform: translateY(8px) scaleY(1.05);
    }
}

.wind-text-1 {
    top: 15%;
    animation: wind-flow-1 25s linear infinite;
}

.wind-text-2 {
    top: 35%;
    animation: wind-flow-2 28s linear infinite;
    animation-delay: -8s;
}

.wind-text-3 {
    top: 55%;
    animation: wind-flow-3 30s linear infinite;
    animation-delay: -15s;
}

.wind-text-4 {
    top: 75%;
    animation: wind-flow-4 27s linear infinite;
    animation-delay: -5s;
}

.wind-text-5 {
    top: 90%;
    animation: wind-flow-5 26s linear infinite;
    animation-delay: -12s;
}

@keyframes wind-flow-1 {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    15% {
        transform: translateY(-30px) rotate(-5deg);
    }

    30% {
        transform: translateY(20px) rotate(3deg);
    }

    45% {
        transform: translateY(-15px) rotate(-2deg);
    }

    60% {
        transform: translateY(25px) rotate(4deg);
    }

    75% {
        transform: translateY(-20px) rotate(-3deg);
    }

    90% {
        transform: translateY(10px) rotate(2deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes wind-flow-2 {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    12% {
        transform: translateY(35px) rotate(6deg);
    }

    28% {
        transform: translateY(-25px) rotate(-4deg);
    }

    44% {
        transform: translateY(30px) rotate(5deg);
    }

    60% {
        transform: translateY(-18px) rotate(-3deg);
    }

    76% {
        transform: translateY(22px) rotate(4deg);
    }

    92% {
        transform: translateY(-12px) rotate(-2deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes wind-flow-3 {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    18% {
        transform: translateY(-28px) rotate(-7deg);
    }

    35% {
        transform: translateY(32px) rotate(5deg);
    }

    52% {
        transform: translateY(-20px) rotate(-4deg);
    }

    68% {
        transform: translateY(26px) rotate(6deg);
    }

    84% {
        transform: translateY(-16px) rotate(-3deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes wind-flow-4 {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    20% {
        transform: translateY(24px) rotate(4deg);
    }

    40% {
        transform: translateY(-32px) rotate(-6deg);
    }

    60% {
        transform: translateY(28px) rotate(5deg);
    }

    80% {
        transform: translateY(-22px) rotate(-4deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes wind-flow-5 {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    16% {
        transform: translateY(-26px) rotate(-5deg);
    }

    32% {
        transform: translateY(30px) rotate(6deg);
    }

    48% {
        transform: translateY(-18px) rotate(-3deg);
    }

    64% {
        transform: translateY(24px) rotate(4deg);
    }

    80% {
        transform: translateY(-14px) rotate(-2deg);
    }

    96% {
        transform: translateY(8px) rotate(1deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

/* Placa Intro Animation */
.placa-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: rgba(135, 206, 235, 0.95);
    pointer-events: none;
    overflow: hidden;
}

.placa-image {
    max-width: 600px;
    width: 80%;
    height: auto;
    filter: drop-shadow(var(--shadow-2xl));
}

.placa-intro.hinge .placa-image {
    animation: hinge 2s ease-in-out forwards;
}

.intro-wind-text {
    position: absolute;
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    opacity: 0.4;
    white-space: nowrap;
    letter-spacing: 0.15em;
    display: inline-block;
    top: 30%;
    animation: intro-wind-flow 10s linear infinite;
}

.intro-wind-text span {
    display: inline-block;
    animation: letter-wave 2s ease-in-out infinite;
}

@keyframes intro-wind-flow {
    0% {
        left: 100%;
        transform: translateY(0) rotate(0deg);
    }

    15% {
        transform: translateY(-30px) rotate(-5deg);
    }

    30% {
        transform: translateY(20px) rotate(3deg);
    }

    45% {
        transform: translateY(-15px) rotate(-2deg);
    }

    60% {
        transform: translateY(25px) rotate(4deg);
    }

    75% {
        transform: translateY(-20px) rotate(-3deg);
    }

    90% {
        transform: translateY(10px) rotate(2deg);
    }

    100% {
        left: -100%;
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .intro-wind-text {
        font-size: 1.66rem;
        top: 25%;
    }
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

/* Desktop optimization - scale down content */
@media (min-width: 1025px) {
    .container {
        transform: scale(0.8);
        transform-origin: top center;
    }

    .hero {
        padding-bottom: 0;
    }

    .contact-section .container,
    .donation-section .container,
    .screenshot-section .container {
        transform: scale(0.8);
        transform-origin: top center;
    }

    .decorative-divider {
        overflow: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .decorative-divider svg {
        min-width: 100%;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .description-row {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .mission-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .description {
        font-size: 1.6rem;
        text-align: center;
    }

    .description strong {
        font-size: 1.8rem;
    }

    .ethics {
        font-size: 1.3rem;
    }

    .company-logo {
        max-width: 350px;
    }

    .contact-title {
        font-size: 2.3rem;
    }

    .contact-form {
        padding: 40px 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 252px;
    }

    .description {
        font-size: 1.5rem;
        text-align: left;
    }

    .description strong {
        font-size: 1.65rem;
    }

    .ethics {
        font-size: 1.65rem;
    }

    .ethics strong {
        font-size: 1.8rem;
    }

    .store-button img {
        height: 54px;
    }

    .donate-button img {
        height: 60px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .bee {
        width: 50px;
    }

    .sun {
        width: 189px;
        height: 189px;
        top: -57px;
        left: -57px;
    }

    .plants-container {
        height: 120px;
        bottom: -15px;
    }

    .plant {
        height: 70px;
    }

    .company-logo {
        max-width: 280px;
    }

    .contact-title {
        font-size: 1.9rem;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-section {
        padding-bottom: 140px;
    }

    .subject-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .subject-btn {
        width: 100%;
    }

    .form-group label {
        font-size: 1.05rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .btn-icon {
        display: none;
    }

    .btn-text {
        font-size: 0.805rem;
    }

    .screenshot-carousel {
        height: 550px;
    }

    .screenshot-card {
        width: 330px;
        margin-left: -165px;
        margin-top: -293px;
    }

    .screenshot-card.prev {
        transform: translateX(-250px) translateZ(-150px) rotateY(20deg) scale(0.75);
    }

    .screenshot-card.next {
        transform: translateX(250px) translateZ(-150px) rotateY(-20deg) scale(0.75);
    }

    .screenshot-card.far-prev,
    .screenshot-card.far-next {
        opacity: 0;
        transform: translateX(0) translateZ(-500px) scale(0.5);
    }

    .screenshot-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .carousel-dots {
        margin-top: 30px;
        gap: 12px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .submit-button img {
        height: 108px;
    }

    .submit-section {
        flex-direction: column;
        gap: 15px;
    }

    .submit-message {
        text-align: center;
        font-size: 1.15rem;
    }

    .music-control {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }

    .music-control-container {
        top: 15px;
        right: 15px;
    }

    .music-control {
        width: 60px;
        height: 60px;
    }

    .music-control svg {
        width: 32px;
        height: 32px;
    }

    .music-label {
        font-size: 0.9rem;
        padding: 4px 12px;
    }

    .sailors-container {
        height: 180px;
    }

    .sailor {
        height: 150px;
        bottom: -160px;
    }

    .plants-container {
        height: 120px;
        bottom: -15px;
    }

    .plant {
        height: 70px;
    }
}

/* Donation Section */
.donation-section {
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sand-beige) 100%);
    padding: 40px 20px 60px;
    position: relative;
    z-index: 100;
    scroll-margin-top: 100px;
    margin-top: 0;
}

.donation-title {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.donation-description {
    font-size: 1.3rem;
    color: #2C3E50;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
    font-weight: 500;
}

.donation-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.donation-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
    padding: 0 20px;
    opacity: 0.6;
}

.donation-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 50px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(74, 144, 226, 0.2);
    text-align: center;
    min-width: 300px;
}

.donation-method-title {
    font-size: 1.5rem;
    color: var(--ocean-blue);
    font-weight: 700;
    margin-bottom: 25px;
}

#donate-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.donorbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dbox-donation-button {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.donorbox-image {
    height: auto;
    width: 200px;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.dbox-donation-button:hover .donorbox-image {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

/* Meet the Developers Button */
.developers-button-container {
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--sky-blue) 100%);
    padding: 20px 20px 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

.developers-button {
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ocean-blue);
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: var(--radius);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.developers-button:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.2);
}

/* Developers Popup */
.developers-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.developers-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.popup-content {
    position: relative;
    z-index: 2;
    animation: popup-fade-in 0.8s ease;
}

.developers-popup.active .popup-content {
    animation: popup-fade-in 0.8s ease;
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--ocean-blue);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--ocean-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.popup-close:hover {
    background: var(--ocean-blue);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.popup-image-frame {
    background: linear-gradient(145deg, rgba(101, 67, 33, 0.1), rgba(74, 47, 26, 0.1));
    padding: 15px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2.5px solid rgba(101, 67, 33, 0.2);
}

.popup-image-frame img {
    display: block;
    max-width: 60vw;
    max-height: 53vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    transition: opacity 0.8s ease;
}

@media (max-width: 768px) {
    .donation-title {
        font-size: 2rem;
    }

    .donation-description {
        font-size: 1.1rem;
    }

    .donation-card {
        padding: 30px 25px;
        min-width: 250px;
    }

    .donation-separator {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .developers-button-container {
        padding: 30px 20px 200px;
    }

    .developers-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: -10px;
        right: -10px;
    }

    .popup-image-frame {
        padding: 10px;
    }
}

/* Company Logo Button */
.company-logo-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0 auto 10px auto;
}

.company-logo-btn:hover {
    transform: scale(1.05);
}

.company-logo-btn:hover .company-logo {
    animation: none;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.company-label {
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: var(--ocean-blue);
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(74, 144, 226, 0.3);
}

.company-logo-btn:hover .company-label {
    opacity: 1;
    color: var(--sea-green);
    text-decoration-color: var(--sea-green);
}

/* Company Info Popup Content */
.company-info-box {
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    padding: 40px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(74, 144, 226, 0.3);
    max-width: 600px;
    width: 90vw;
    text-align: center;
    position: relative;
}

.company-info-box p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--ocean-blue);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .company-info-box {
        padding: 30px 20px;
    }

    .company-info-box p {
        font-size: 1.1rem;
    }
}

/* Feltland Mission Section */
.mission-section {
    padding: 60px 20px 80px;
    background: linear-gradient(180deg, var(--sand-beige) 0%, var(--sky-blue) 100%);
    position: relative;
    z-index: 100;
    margin-top: 0;
}

.mission-title {
    font-size: 2.8rem;
    color: var(--ocean-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.mission-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.mission-slide {
    display: none;
    animation: fade-in 0.5s ease-in-out;
}

.mission-slide.active {
    display: block;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
}

.mission-image-container {
    flex: 0 0 45%;
    max-width: 45%;
}

.mission-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.mission-image-container img:hover {
    transform: rotate(0deg) scale(1.02);
}

.mission-text-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2C3E50;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
}

.mission-text strong {
    font-weight: 700;
    color: var(--ocean-blue);
    font-size: 1.65rem;
}

.slide-counter {
    align-self: flex-end;
    font-family: 'Baloo 2', 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-blue);
    background: rgba(74, 144, 226, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

.mission-arrow {
    background: var(--ocean-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    flex-shrink: 0;
}

.mission-arrow:hover {
    background: var(--sea-green);
    transform: scale(1.1);
}

.mission-arrow svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .mission-image-container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mission-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .mission-carousel {
        gap: 10px;
    }

    .mission-arrow {
        width: 40px;
        height: 40px;
    }
}
