/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d4a2b;        /* Verde musgo escuro */
    --secondary-color: #4a7c59;      /* Verde médio */
    --accent-color: #d4a574;         /* Bege/Creme */
    --gold-color: #d4af37;           /* Dourado */
    --dark-bg: #1a1410;              /* Marrom escuro quase preto */
    --light-bg: #f5f1e8;             /* Bege claro */
    --text-dark: #2d4a2b;            /* Verde escuro */
    --text-light: #6b7c6e;           /* Verde acinzentado */
    --border-color: #d4c5b0;         /* Bege médio */
    --success-color: #5a8f4f;        /* Verde grama */
    --brown-color: #3d2817;          /* Marrom chocolate */
    --shadow: 0 4px 6px rgba(45, 40, 16, 0.15);
    --shadow-lg: 0 10px 30px rgba(45, 40, 16, 0.25);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.admin-link {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-color);
}

.nav-link.admin-link:hover {
    background: var(--gold-color);
    color: var(--dark-bg);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 74, 43, 0.95), rgba(74, 124, 89, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232d4a2b" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 3px solid var(--gold-color);
    box-shadow: inset 0 -3px 10px rgba(212, 175, 55, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.7));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NEON TITLE ===== */
.neon-title {
    font-family: 'Pacifico', cursive;
    font-size: 8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, 
        #d4af37 0%,
        #f4d03f 25%,
        #4a7c59 50%,
        #5a8f4f 75%,
        #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9))
            drop-shadow(0 0 20px rgba(90, 143, 79, 0.6))
            drop-shadow(0 0 30px rgba(74, 124, 89, 0.4));
    animation: neonGlow 2s ease-in-out infinite alternate,
               gradientShift 3s ease infinite,
               neonFlicker 4s linear infinite,
               fadeInDown 1s ease;
    text-shadow: 
        0 0 5px rgba(212, 175, 55, 0.6),
        0 0 10px rgba(212, 175, 55, 0.6),
        0 0 20px rgba(90, 143, 79, 0.5),
        0 0 30px rgba(90, 143, 79, 0.5),
        0 0 40px rgba(74, 124, 89, 0.4);
    letter-spacing: 0.05em;
    position: relative;
}

@keyframes neonGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9))
                drop-shadow(0 0 20px rgba(90, 143, 79, 0.6))
                drop-shadow(0 0 30px rgba(74, 124, 89, 0.4))
                drop-shadow(0 0 40px rgba(74, 124, 89, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 1))
                drop-shadow(0 0 30px rgba(90, 143, 79, 0.8))
                drop-shadow(0 0 40px rgba(74, 124, 89, 0.6))
                drop-shadow(0 0 50px rgba(74, 124, 89, 0.5));
    }
}

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

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9))
                drop-shadow(0 0 20px rgba(90, 143, 79, 0.6))
                drop-shadow(0 0 30px rgba(74, 124, 89, 0.4));
    }
    20%, 24%, 55% {
        opacity: 0.4;
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4))
                drop-shadow(0 0 10px rgba(90, 143, 79, 0.2))
                drop-shadow(0 0 15px rgba(74, 124, 89, 0.1));
    }
    22% {
        opacity: 0.7;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 15px rgba(90, 143, 79, 0.4))
                drop-shadow(0 0 20px rgba(74, 124, 89, 0.3));
    }
}

/* ===== VIDEO TITLE ===== */
.video-title {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.video-title video {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7))
            drop-shadow(0 0 30px rgba(90, 143, 79, 0.5));
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.5);
    color: var(--gold-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-color), #c99a2e);
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c34a, var(--gold-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: var(--gold-color);
    color: white;
    border-color: var(--gold-color);
}

.btn-secondary:hover {
    background: var(--gold-color);
    color: var(--dark-bg);
    box-shadow: var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES ===== */
.features {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-color), #c99a2e);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gold-glow);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    border-top: 3px solid var(--gold-color);
    border-bottom: 3px solid var(--gold-color);
    box-shadow: inset 0 3px 10px rgba(212, 175, 55, 0.2), inset 0 -3px 10px rgba(212, 175, 55, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 4rem 0;
    border-bottom: 3px solid var(--gold-color);
    box-shadow: inset 0 -3px 10px rgba(212, 175, 55, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.image-placeholder {
    background: var(--light-bg);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary-color);
}

/* ===== MISSION ===== */
.mission-section {
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-card i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.mission-card p {
    color: var(--text-light);
}

/* ===== STATIONS ===== */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.station-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.station-card.featured {
    border: 3px solid var(--gold-color);
    box-shadow: var(--gold-glow), var(--shadow);
}

.station-icon {
    font-size: 4rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.station-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.station-card p {
    color: var(--text-light);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold-color), #c99a2e);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--gold-glow);
}

.customization-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
}

.customization-note i {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    background: var(--light-bg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.gallery-note {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--text-light);
}

.gallery-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-color), #c99a2e);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--gold-glow);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-color), #c99a2e);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--gold-glow);
}

.social-links-contact a:hover {
    background: linear-gradient(135deg, #e6c34a, var(--gold-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ===== FORMS ===== */
.contact-form-container,
.orcamento-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-container h2,
.orcamento-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.orcamento-form-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.text-danger {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note a {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ===== ORCAMENTO ===== */
.orcamento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.orcamento-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.orcamento-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefits-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.benefits-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.benefits-box h3 i {
    margin-right: 0.5rem;
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.benefits-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ===== RESULTADO ===== */
.resultado-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
    }
}

.resultado-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resultado-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.resultado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resultado-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.resultado-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.resultado-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.resultado-item:last-child {
    border-bottom: none;
}

.resultado-item .label {
    color: var(--text-light);
    font-weight: 500;
}

.resultado-item .value {
    color: var(--text-dark);
    font-weight: 600;
}

.resultado-item .value.highlight {
    color: var(--gold-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.valor-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid var(--gold-color);
    box-shadow: var(--gold-glow), var(--shadow);
}

.valor-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.valor-card .label,
.valor-card .value {
    color: white;
}

.resultado-item.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.resultado-item.total .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.valor-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
    font-style: italic;
}

.resultado-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.resultado-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.resultado-info h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.incluido-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.incluido-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
}

.incluido-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.resultado-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.next-steps {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    padding: 0.8rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ERROR ===== */
.error-section {
    padding: 5rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-id {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.error-id code {
    font-family: monospace;
    color: var(--accent-color);
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold-color);
    box-shadow: inset 0 3px 10px rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.5rem 0;
    opacity: 0.8;
}

.footer-section li i {
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.footer-section a:hover {
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow);
        padding: 1rem 0;
    }

    .navbar-menu.active {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .navbar-logo {
        height: 45px;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .neon-title {
        font-size: 4rem;
    }

    .video-title video {
        max-width: 350px;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-grid,
    .contact-grid,
    .orcamento-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .resultado-actions {
        flex-direction: column;
    }

    .resultado-actions .btn {
        width: 100%;
    }
}

@media print {
    .navbar,
    .footer,
    .resultado-actions,
    .page-header {
        display: none;
    }

    .resultado-section {
        padding: 1rem 0;
    }
}
