/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #ffffff;
    color: #484848;
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    color: #484848;
}

.hero-content h1 {
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: #FF5A5F;
    color: white;
}

.btn-primary:hover {
    background-color: rgba(255, 90, 95, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-hero {
    background-color: white;
    color: #FF5A5F;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background-color: #00A699;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    background-color: rgba(0, 166, 153, 0.9);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FF5A5F;
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    background: none;
    border: none;
    color: #484848;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF5A5F;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/-2016-11-05_ao_13-_Vit%C3%B3ria_94_Romerito_Pontes_%2830875449812%29_%28cropped%29.jpg/2560px--2016-11-05_ao_13-_Vit%C3%B3ria_94_Romerito_Pontes_%2830875449812%29_%28cropped%29.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 90, 95, 0.9), rgba(0, 166, 153, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: 700;
    color: #484848;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #767676;
    max-width: 32rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: #767676;
    line-height: 1.6;
}

/* Accommodations Section */
.accommodations {
    background-color: #F5F5F5;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accommodation-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.accommodation-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    height: calc(100%); /*Adiciona 30% à altura padrão */
    /* Se preferir uma altura fixa, use por exemplo: height: 260px; */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content .btn {
    margin-top: auto;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #767676;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.location-icon {
    flex-shrink: 0;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #484848;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    color: #767676;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background-color: rgba(0, 166, 153, 0.1);
    color: #00A699;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.external-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .external-icon {
    transform: translateX(2px);
}

/* Differentials Section */
.differentials {
    background-color: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.differential-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-2px);
}

.differential-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 166, 153, 0.1);
    color: #00A699;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.differential-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #484848;
    margin-bottom: 0.5rem;
}

.differential-description {
    color: #767676;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Partnerships Section */
.partnerships {
    background-color: #F5F5F5;
}

.partnerships-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.partnership-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 166, 153, 0.1);
    color: #00A699;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.partnerships-text {
    font-size: 1.125rem;
    color: #767676;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #484848;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        align-items: start;
    }
}

.footer-links {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-links {
        text-align: left;
    }
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links li {
    margin: 0;
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF5A5F;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-contact {
        text-align: right;
    }
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: left;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF5A5F;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .accommodations-grid {
        gap: 1.5rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}