:root {
    --bg-primary: #1A1A1A;
    --bg-secondary: #25282A;
    --bg-card: #1E1E1E;
    --accent: #D4AF37;
    --accent-light: #E4C565;
    --text-primary: #F5F5F5;
    --text-secondary: #E0E0E0;
    --text-muted: #B0B0B0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    background-image: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: var(--text-primary);
}

.gold-text {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

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

.section {
    padding: 60px 0;
}

.section-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 24px auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* HERO SECTION - Layout D - Assimétrico */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-primary) 0%, #0a0a0a 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

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

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.hero-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title br {
    display: none;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Photo Frame */
.hero-photo-frame {
    position: relative;
    width: 280px;
    height: 350px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    overflow: hidden;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.hero-photo-frame:hover .hero-photo-img {
    transform: scale(1.05);
}

/* Frame Corners */
.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent);
    border-style: solid;
}

.frame-corner.top-left {
    top: 15px;
    left: 15px;
    border-width: 2px 0 0 2px;
}

.frame-corner.top-right {
    top: 15px;
    right: 15px;
    border-width: 2px 2px 0 0;
}

.frame-corner.bottom-left {
    bottom: 15px;
    left: 15px;
    border-width: 0 0 2px 2px;
}

.frame-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-width: 0 2px 2px 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hover Effects */
.hero-photo-frame {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo-frame:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.hero-photo-frame:hover .frame-corner {
    border-color: var(--accent);
}

/* Section Title Enhancement */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Desktop */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
        padding: 60px 40px;
    }

    .hero-left {
        text-align: left;
    }

    .hero-name::after {
        left: 0;
        transform: none;
    }

    .hero-title br {
        display: block;
    }

    .hero-tagline {
        margin-left: 0;
    }

    .hero-photo-frame {
        width: 320px;
        height: 400px;
        margin-left: auto;
    }

    .scroll-indicator {
        left: 40px;
        transform: none;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }

    .hero-photo-frame {
        width: 380px;
        height: 480px;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 500px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* AUTHORITY SECTION */
.authority {
    background: var(--bg-secondary);
}

.authority-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.authority-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

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

.authority-image:hover img {
    transform: scale(1.03);
}

.authority-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 26, 0.7));
    z-index: 1;
}

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.authority-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.authority-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
}

.coffee-touch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-style: italic;
    font-size: 0.95rem;
}

.coffee-touch svg {
    width: 20px;
    height: 20px;
}

/* SERVICES SECTION */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-title {
    color: var(--accent-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ADVANTAGES SECTION */
.advantages {
    background: var(--bg-secondary);
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 24px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    min-height: 130px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon svg {
    transform: scale(1.15);
    color: var(--accent-light);
}

.advantage-text {
    flex: 1;
}

.advantage-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.advantage-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
    line-height: 1.6;
}

/* TARGET AUDIENCE SECTION */
.target {
    background: var(--bg-primary);
}

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

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.target-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.target-item:hover .target-icon svg {
    transform: scale(1.15);
    color: var(--accent-light);
}

.target-icon svg {
    transition: all 0.4s ease;
}

.target-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.target-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CONTACT SECTION */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 12px;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -8px;
    font-size: 0.8rem;
    color: var(--accent);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    width: 100%;
    max-width: 250px;
    background: transparent;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
    margin: 16px auto 0;
}

@media (min-width: 768px) {
    .btn-submit {
        width: auto;
        padding: 14px 32px;
    }
}

.btn-submit:hover {
    background: var(--accent);
    color: #0a0a0a;
}

.contact-email {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-email a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-email a:hover {
    opacity: 0.8;
}

.contact-email svg {
    width: 18px;
    height: 18px;
}

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-dev {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.footer-dev a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-dev a:hover {
    color: var(--accent);
    opacity: 1;
}

/* DESKTOP RESPONSIVE */
@media (min-width: 768px) {
    .hero-content {
        padding: 60px 40px;
    }

    .hero-image {
        width: 220px;
        height: 220px;
        margin-bottom: 40px;
    }

    .section {
        padding: 100px 0;
    }

    .authority-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        text-align: left;
    }

    .authority-text {
        text-align: left;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 420px;
    }

    .authority-image {
        flex-shrink: 0;
        max-width: 320px;
        aspect-ratio: 3/4;
    }

    .authority-badges {
        justify-content: flex-start;
    }

    .authority-description {
        margin: 0 0 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .advantage-item {
        min-height: 140px;
        padding: 28px;
    }

    .target-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .target-item {
        padding: 32px 24px;
    }
}

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

    .hero-title {
        font-size: 3.5rem;
    }
}
