/* Reset & Variables */
:root {
    --primary-color: #0d1b2a; /* Dark Blue */
    --secondary-color: #c27a3e; /* Copper/Orange */
    --secondary-hover: #a86630;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-color: #fcfbf9; /* Light neutral */
    --card-bg: #ffffff;
    --section-bg: #f5f3ef;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(13, 27, 42, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 122, 62, 0.3);
}

.btn-outline {
    border-color: var(--light-text);
    color: var(--light-text);
}

.btn-outline:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.btn-full {
    display: block;
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: var(--secondary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px;
    transition: var(--transition);
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: var(--light-text);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Sobre Nós Section */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 20px;
}

.sobre-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.feature-number {
    display: block;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
}

.feature-desc {
    font-weight: 500;
    color: var(--primary-color);
}

.sobre-image-wrapper {
    position: relative;
}

.sobre-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sobre-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    z-index: -1;
}

/* Quartos Section */
.quartos {
    background-color: var(--section-bg);
}

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

.quarto-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quarto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quarto-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.placeholder-img {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.quarto-content {
    padding: 25px;
}

.quarto-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quarto-content p {
    color: #666;
    margin-bottom: 20px;
    min-height: 48px;
}

.quarto-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.units {
    font-size: 0.9rem;
    background-color: rgba(194, 122, 62, 0.1);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.price-disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

/* Restaurante Section */
.restaurante-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurante-img {
    height: 500px;
    background-image: url('../images/restaurante.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurante-overlay {
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurante-overlay h3 {
    color: #ffffff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.restaurante-features {
    margin-top: 30px;
}

.restaurante-features li {
    margin-bottom: 20px;
    padding-left: 0;
    position: relative;
}

.restaurante-features strong {
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

/* Localização Section */
.localizacao {
    background-color: var(--section-bg);
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.localizacao-info {
    padding: 40px;
}

.localizacao-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.localizacao-info p {
    margin-bottom: 30px;
    color: #666;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    min-height: 400px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0 0;
}

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

.footer h3, .footer h4 {
    color: var(--light-text);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-legal p {
    opacity: 0.7;
    margin-bottom: 5px;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .sobre-grid, .restaurante-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-image-wrapper {
        order: -1;
    }
    
    .localizacao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Menu Active */
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-active li {
        margin: 10px 0;
    }
}
