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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Seção Hero - Apresentativa */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: #000000;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: #ffd700;
    color: #000000;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    padding: 15px 30px;
    border: 2px solid #000000;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

/* Container das imagens flutuantes */
.floating-spaces {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Estilo base para as imagens flutuantes */
.floating-space {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffd700;
    opacity: 0;
    animation: fadeInFloat 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.floating-space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Posicionamento orgânico das imagens */
.space-1 {
    top: 5%;
    left: 20%;
    transform: rotate(-6deg);
    animation-delay: 0.5s;
}

.space-3 {
    top: 0%;
    right: 0%;
    transform: rotate(-4deg);
    animation-delay: 1.5s;
}

.space-4 {
    top: 70%;
    left: 0%;
    transform: rotate(5deg);
    animation-delay: 2s;
}

/* Animação de entrada e flutuação */
@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animação contínua de flutuação */
.space-1 {
    animation: fadeInFloat 0.8s ease-out 0.5s forwards, float 3s ease-in-out 1.3s infinite;
}

.space-3 {
    animation: fadeInFloat 0.8s ease-out 1.5s forwards, float 4s ease-in-out 2.3s infinite;
}

.space-4 {
    animation: fadeInFloat 0.8s ease-out 2s forwards, float 3.2s ease-in-out 2.8s infinite;
}

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

/* Efeito hover nas imagens flutuantes */
.floating-space:hover {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    animation-play-state: paused;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.space-1:hover {
    transform: translateY(-5px) scale(1.05) rotate(-6deg);
}

.space-3:hover {
    transform: translateY(-5px) scale(1.05) rotate(-4deg);
}

.space-4:hover {
    transform: translateY(-5px) scale(1.05) rotate(5deg);
}

/* Container do Monitor */
.monitor-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 400px;
    perspective: 1000px;
}

/* Container do Mobile */
.mobile-container {
    position: absolute;
    top: 60%;
    right: 0%;
    width: 200px;
    height: 400px;
    transform: translateY(-50%);
    z-index: 10;
    perspective: 1000px;
}

/* Moldura do Mobile */
.mobile-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    animation: mobileGlow 3s ease-in-out infinite;
}

@keyframes mobileGlow {
    0%, 100% {
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(102, 126, 234, 0.3);
    }
}

.mobile-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #1a1a1a;
    border-radius: 22px;
    z-index: 1;
}

/* Tela do Mobile */
.mobile-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    background-image: url('./images/mobspaces.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mobile-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Efeito hover no mobile */
.mobile-container:hover .mobile-frame {
    transform: rotateY(-10deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(102, 126, 234, 0.4);
}

.monitor-container:hover .monitor-frame {
    transform: rotateX(2deg) rotateY(-1deg) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(102, 126, 234, 0.4);
}

/* Moldura do Monitor */
.monitor-frame {
    width: 100%;
    height: 380px;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 25px;
    padding: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateX(5deg) rotateY(-2deg);
    transition: transform 0.3s ease;
    animation: monitorGlow 3s ease-in-out infinite;
}

@keyframes monitorGlow {
    0%, 100% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(102, 126, 234, 0.3);
    }
}

.monitor-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #1a1a1a;
    border-radius: 15px;
    z-index: 1;
}

.monitor-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: #2c2c2c;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tela do Monitor */
.monitor-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
    background-image: url('./images/SiteSeatHub.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.monitor-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(0,0,0,0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

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

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('./images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #000000;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.benefit-description {
    color: #666666;
    line-height: 1.6;
}

/* Seção de Como Funciona */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), 
                url('./images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffd700;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.step-description {
    color: #666666;
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 2rem;
    color: #ffd700;
    z-index: 1;
}

.step-item:last-child .step-arrow {
    display: none;
}

/* Seção de Comodidades */
.amenities-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.amenities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amenity-item:hover {
    background: #ffffff;
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255,215,0,0.2);
    transform: translateY(-3px);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #000000;
    flex-shrink: 0;
}

.amenity-text {
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.3;
}

.amenities-image {
    position: relative;
}

.amenities-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px;
    border-radius: 0 0 25px 25px;
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Seção de Aplicativo Mobile */
.app-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9)), 
                url('./images/segurandocelularapp.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    margin: 30px 0;
}

.app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #000000;
}

.app-features li::before {
    content: "✓";
    background: #ffd700;
    color: #000000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.app-button {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.app-button:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

.app-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.app-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

/* Container do Mobile da Seção App */
.app-mobile-container {
    position: relative;
    width: 250px;
    height: 500px;
    perspective: 1000px;
}

/* Moldura do Mobile da Seção App */
.app-mobile-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
    animation: appMobileGlow 3s ease-in-out infinite;
}

@keyframes appMobileGlow {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 0 0 2px #1a1a1a,
            0 0 0 1px rgba(102, 126, 234, 0.3);
    }
}

.app-mobile-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #1a1a1a;
    border-radius: 30px;
    z-index: 1;
}

/* Tela do Mobile da Seção App */
.app-mobile-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    background-image: url('./images/mobcomecar.PNG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.app-mobile-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Efeito hover no mobile da seção app */
.app-mobile-container:hover .app-mobile-frame {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px #1a1a1a,
        0 0 0 1px rgba(102, 126, 234, 0.4);
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('./images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

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

.testimonial-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #000000;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #666666;
    font-size: 0.9rem;
}

/* Seção CTA Final */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('./images/coworking.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #ffd700;
    color: #000000;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: white;
    color: #000000;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo .highlight {
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.lang-btn:hover,
.lang-btn.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000000;
    text-decoration: none;
}

.header-cta {
    background: #ffd700;
    color: #000000;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #ffd700;
}

.mobile-menu-toggle.active {
    color: #ffd700;
}

/* Garantir que o botão volte ao preto quando não estiver ativo */
.mobile-menu-toggle:not(.active) {
    color: #000000;
}

/* Menu mobile ativo */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 20px;
}

.nav-menu.active li {
    text-align: center;
    width: 100%;
}

.nav-menu.active a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 1.1rem;
    display: block;
    width: 100%;
}

.nav-menu.active a:last-child {
    border-bottom: none;
}

/* Botão CTA no menu mobile */
.mobile-cta {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #ffd700;
}

.mobile-only {
    display: none;
}

.nav-menu.active .mobile-only {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px 20px;
    background: #ffd700;
    color: #000000;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu.active .mobile-only:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

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

.footer-logo-img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

.footer-developer {
    color: #999999;
    font-size: 0.9rem;
}

.footer-developer a {
    color: #ffd700;
    text-decoration: none;
}

.footer-developer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .step-arrow {
        display: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        order: 2;
    }

    .amenities-image {
        order: 1;
    }

    .amenity-item {
        padding: 15px 10px;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .amenity-text {
        font-size: 0.85rem;
    }

    .app-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    /* Responsividade para o Monitor */
    .hero-image {
        height: 500px;
    }

    .monitor-container {
        height: 400px;
        max-width: 100%;
    }

    .monitor-frame {
        transform: rotateX(0deg) rotateY(0deg);
    }

    .monitor-container:hover .monitor-frame {
        transform: rotateX(0deg) rotateY(0deg) scale(1.01);
    }

    /* Responsividade para o Mobile */
    .mobile-container {
        width: 150px;
        height: 300px;
        right: 3%;
    }

    .mobile-frame {
        transform: rotateY(-5deg) rotateX(0deg);
    }

    .mobile-container:hover .mobile-frame {
        transform: rotateY(-3deg) rotateX(0deg) scale(1.01);
    }

    /* Ajustes para imagens flutuantes em mobile */
    .floating-space {
        width: 120px;
        height: 120px;
    }

    .space-1 {
        top: 5%;
        left: 20%;
        transform: rotate(-6deg);
    }

    .space-3 {
        top: 0%;
        right: 0%;
        transform: rotate(-4deg);
    }

    .space-4 {
        top: 70%;
        left: 0%;
        transform: rotate(5deg);
    }

    .cta-title {
        font-size: 2.2rem;
    }

    /* Responsividade para mobile da seção app */
    .app-image {
        height: 400px;
    }

    .app-mobile-container {
        width: 200px;
        height: 400px;
    }

    .app-mobile-frame {
        transform: rotateY(-5deg) rotateX(0deg);
    }

    .app-mobile-container:hover .app-mobile-frame {
        transform: rotateY(-3deg) rotateX(0deg) scale(1.01);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-right {
        gap: 15px;
    }

    .language-selector {
        gap: 5px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .header-cta {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffd700;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* Ajustes para imagens flutuantes em telas muito pequenas */
    .floating-space {
        width: 100px;
        height: 100px;
    }

    .space-1 {
        top: 10%;
        left: 15%;
        transform: rotate(-4deg);
    }

    .space-3 {
        top: 5%;
        right: 5%;
        transform: rotate(-3deg);
    }

    .space-4 {
        top: 65%;
        left: 5%;
        transform: rotate(4deg);
    }

    .logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 30px;
    }
}
