:root {
    --primary-color: #FFD700;
    --text-color: #000000;
    --background-color: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --accent-gray: #f9f9f9;
    --shadow: rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--shadow);
    opacity: 0.95;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.container {
    min-height: 100vh;
    position: relative;
}

.background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80') center/cover no-repeat;
}

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

.background .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.header {
    max-width: 768px;
    margin: 0 auto 4rem;
    margin-top: 5%;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
}

.header p {
    font-size: 1.125rem;
    color: #e5e5e5;
}

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

.whatsapp-button {
    position: fixed;
    bottom: 39px;
    right: 20px;
    margin-right:80px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 1000;
    outline: none; 
    width: 56px;
    height: 56px; 
    min-width: 56px; 
    min-height: 56px; 
    overflow: hidden; 
    padding: 0; 
    vertical-align: middle; 
    color: #fff; 
    background-color: #25D366; 
    border-color: #22c38e; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.2);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

footer {
    background: var(--background-color);
    color: var(--text-color);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.instagram-icon {
    font-size: 32px;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

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

.form-container, .contact-info {
    opacity: 0;
    transform: translateY(1rem);
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 6rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-container h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #111827;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background: #1f2937;
}

.contact-info {
    margin-top: 5rem;
}

.info-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 6rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.info-container h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-container {
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #4b5563;
}

.label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.info-item a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #4b5563;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease-out forwards;
}