        :root {
            --noir: #0a0a0a;
            --champagne: #f4efe7;
            --gold: #d4af37;
            --deep-burgundy: #5c1a1a;
            --warm-white: #fefdfb;
            --shadow-soft: rgba(0, 0, 0, 0.08);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--warm-white);
            color: var(--noir);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header con logo */
.header {
    display: flex;             /* Ativa o modo flexível */
    justify-content: space-between; /* Empurra um para cada ponta */
    align-items: center;       /* Alinha verticalmente ao centro */
    
    /* Mantendo suas configurações anteriores */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 3rem;        /* Ajuste o padding se necessário */
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--noir);
            text-transform: uppercase;
        }

        .logo span {
            color: var(--gold);
        }
        
.logo a {
    text-decoration: none;
    color: inherit; /* Faz o link usar a cor definida na classe .logo */
}

.logo a:hover {
    opacity: 0.8;
    transition: 0.3s;
}

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 80px;
            background: linear-gradient(135deg, var(--champagne) 0%, var(--warm-white) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Content Column */
        .hero-content {
            animation: fadeInLeft 1s ease-out;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--gold);
            color: var(--warm-white);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: pulse 2s ease-in-out infinite;
            margin-bottom: 0;          /* Remove margens extras se houver */
            white-space: nowrap;       /* Evita que o texto quebre linha */
        }
        

        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--noir);
            letter-spacing: -1px;
        }

        h1 .highlight {
            color: var(--deep-burgundy);
            font-style: italic;
            display: block;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #4a4a4a;
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .value-props {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .value-item {
            background: white;
            padding: 1.5rem;
            border-left: 3px solid var(--gold);
            box-shadow: 0 4px 15px var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .value-item h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--deep-burgundy);
        }

        .value-item p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        /* Images Column */
        .hero-images {
            position: relative;
            height: 600px;
            animation: fadeInRight 1s ease-out;
        }

        .image-container {
            position: absolute;
            border: 8px solid white;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .image-container:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            z-index: 10;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .img-1 {
            width: 320px;
            height: 420px;
            top: 0;
            left: 0;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .img-2 {
            width: 280px;
            height: 380px;
            top: 100px;
            right: 50px;
            z-index: 2;
            animation: float 6s ease-in-out infinite 1s;
        }

        .img-3 {
            width: 250px;
            height: 200px;
            bottom: 0;
            right: 0;
            z-index: 1;
            animation: float 6s ease-in-out infinite 2s;
        }

        /* Form Section */
        .form-section {
            background: var(--noir);
            padding: 6rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(92, 26, 26, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

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

        .form-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .form-header p {
            color: var(--champagne);
            font-size: 1.1rem;
            font-weight: 300;
        }

        .form-wrapper {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            color: var(--champagne);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        input {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid transparent;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: var(--noir);
            transition: all 0.3s ease;
            outline: none;
        }

        input:focus {
            border-color: var(--gold);
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        input::placeholder {
            color: #999;
        }

        .submit-btn {
            width: 100%;
            padding: 1.25rem 2rem;
            background: var(--gold);
            color: var(--noir);
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--deep-burgundy);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-btn span {
            position: relative;
            z-index: 1;
            color: var(--noir);
            transition: color 0.3s ease;
        }

        .submit-btn:hover span {
            color: var(--gold);
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: var(--gold);
            color: var(--noir);
            padding: 1.5rem;
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            animation: slideDown 0.5s ease;
        }

        .success-message.show {
            display: block;
        }

        /* Footer */
        footer {
            background: var(--champagne);
            padding: 3rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }

        footer p {
            color: #666;
            font-size: 0.9rem;
        }

        .footer-contact {
            margin-top: 1rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--deep-burgundy);
            font-weight: 600;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        /* Responsive */
        @media (max-width: 968px) {
.hero {padding-top: 160px;}
.hero-grid {grid-template-columns: 1fr; gap: 3rem;}
.hero-images {height: 400px;}
h1 {font-size: 3rem;}
.value-props {grid-template-columns: 1fr;}
.form-wrapper {padding: 2rem;}

        @media (max-width: 640px) {
.header {padding: 1rem 1.5rem;}
.logo {font-size: 1.3rem;}
h1 {font-size: 2.5rem; display: ruby;}

.subtitle {font-size: 1.1rem;}
.hero-grid {padding: 2rem 1.5rem;}
.form-section {padding: 4rem 1.5rem;}
.form-header h2 {font-size: 2.2rem;}
.img-1 {width: 250px; height: 330px;}
.img-2 {width: 220px; height: 300px;}
.img-3 {width: 200px; height: 160px;}
.hero {padding-top: 180px;}
.header {display: ruby;}
.header a {
    text-decoration: none;
    color: inherit; /* Faz o link usar a cor definida na classe .logo */
}

        }