/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 50, 80, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.arkki-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo {
    width: 50px;
    height: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a3a5c;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.logo-brand {
    display: flex;
    flex-direction: column;
}

.brand-name,
.brand-surname {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #4fb3d9;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hamburger-menu.active .hamburger-line {
    background-color: #1a3a5c;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;    background: linear-gradient(
        135deg,
        rgba(26, 58, 92, 0.6),
        rgba(74, 179, 217, 0.4)
    ),
    url('assets/imageminimo3up.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 92, 0.7),
        rgba(74, 179, 217, 0.3)
    );
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin-left: 0;
    padding: 0 4rem 0 8rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-btn {
    font-family: 'Inter', sans-serif;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    width: auto;
}

.hero-btn:hover {
    background: #ffffff;
    color: #1a3a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Amenities Section */
.amenities-section {
    padding: 120px 0;
    background: #ffffff;
    color: #333;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.amenities-content {
    padding: 0;
}

.amenities-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #1a3a5c;
    letter-spacing: -0.5px;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 3rem;
}

.amenity-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-item:hover {
    padding-left: 1rem;
    background: rgba(79, 179, 217, 0.05);
}

.amenity-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.3px;
}

.amenities-btn {
    font-family: 'Inter', sans-serif;
    background: #1a3a5c;
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.amenities-btn:hover {
    background: #4fb3d9;
    transform: translateY(-2px);
}

.amenities-image {
    position: relative;
    overflow: hidden;
}

.amenities-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenities-image:hover img {
    transform: scale(1.02);
}

/* Launch Section */
.launch-section {
    padding: 120px 0;
    background: #f8f9fa;
    color: #333;
}

.launch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.launch-content {
    padding: 0;
}

.launch-badge {
    display: inline-block;
    background: #1a3a5c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.launch-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a3a5c;
    letter-spacing: -0.5px;
}

.launch-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
}

.launch-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid #4fb3d9;
}

.feature-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a3a5c;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.launch-btn {
    font-family: 'Inter', sans-serif;
    background: #1a3a5c;
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.launch-btn:hover {
    background: #4fb3d9;
    transform: translateY(-2px);
}

.launch-image {
    position: relative;
    overflow: hidden;
}

.launch-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.launch-image:hover img {
    transform: scale(1.02);
}

.launch-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(26, 58, 92, 0.9);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.launch-status {
    color: #ffffff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #ffffff;
    color: #333;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-content {
    padding: 0;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a3a5c;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}



.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0.3px;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fb3d9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    font-family: 'Inter', sans-serif;
    background: #1a3a5c;
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: none;
    justify-self: start;
}

.form-submit:hover {
    background: #4fb3d9;
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding: 0 3rem 0 5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
        color: #1a3a5c;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: #f0f8ff;
        color: #4fb3d9;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 70%;
    }
    
    .hero-content {
        padding: 0 1.5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.6rem;
        width: auto;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .amenities-section {
        padding: 80px 0;
    }

    .amenities-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .amenities-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .amenity-item {
        padding: 1rem 0;
    }

    .amenity-item:hover {
        padding-left: 0.5rem;
    }

    .amenity-text {
        font-size: 1rem;
    }

    .amenities-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .amenities-image img {
        height: 300px;
    }

    .launch-section {
        padding: 80px 0;
    }

    .launch-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .launch-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .launch-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .launch-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1rem 0;
    }

    .launch-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }    .launch-image img {
        height: 300px;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .contact-info {
        gap: 1.5rem;
    }    .info-item {
        padding: 1rem 0;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1rem;
    }

    .form-title {
        font-size: 1.3rem;
        text-align: center;
    }    .form-submit {
        width: 100%;
        text-align: center;
        justify-self: stretch;
    }
}

/* Footer */
.footer {
    background-color: #1a3a5c;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo .arkki-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-info {
    text-align: right;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-contact {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #4fb3d9;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(79, 179, 217, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
      .footer-contact {
        font-size: 0.8rem;
    }
}

/* Media query para dispositivos muito pequenos */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}