:root {
    --primary: #431407;
    --secondary: #7c2d12;
    --accent: #c2410c;
    --background: #fff7ed;
    --surface: #ffffff;
    --text: #431407;
    --muted: #ea580c;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.has-text-primary {
    color: var(--primary) !important;
}

.has-text-accent {
    color: var(--accent) !important;
}

.has-background-light {
    background-color: #fef3f2 !important;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease;
}

.navbar {
    background-color: var(--surface);
    box-shadow: 0 2px 4px rgba(67, 20, 7, 0.1);
}

.navbar-item {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: var(--accent);
    background-color: transparent;
}

.navbar-burger {
    color: var(--text);
}

.button.is-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-accent:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(67, 20, 7, 0.2);
}

.button.is-outlined {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-outlined:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(194, 65, 12, 0.1), rgba(124, 45, 18, 0.05));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-image-circle {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-circle img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(67, 20, 7, 0.2);
}

.services-grid-section {
    padding: 80px 0;
}

.service-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 20, 7, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(67, 20, 7, 0.15);
}

.service-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.alternating-steps-section {
    padding: 80px 0;
}

.step-item {
    margin-bottom: 80px;
}

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

.step-icon-left, .step-icon-right {
    display: inline-block;
    margin-bottom: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
}

.step-item img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(67, 20, 7, 0.15);
}

.tips-section {
    padding: 80px 0;
    background-color: var(--surface);
}

.tip-box {
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.tip-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(67, 20, 7, 0.1);
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 60px 40px;
    border-radius: 15px;
}

.minimal-footer {
    background-color: var(--primary);
    padding: 40px 0 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    box-shadow: 0 -2px 10px rgba(67, 20, 7, 0.2);
    padding: 20px;
    z-index: 9998;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.page-header {
    padding: 60px 0 40px;
}

.value-box, .advantage-box {
    height: 100%;
}

.value-icon, .service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.experience-list {
    list-style: none;
    padding-left: 0;
}

.experience-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.experience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2em;
}

.service-list, .benefits-list {
    list-style: none;
    padding-left: 0;
}

.service-list li, .benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.service-list li:before, .benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.contact-info-box {
    padding: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent);
}

.working-hours-box {
    padding: 25px;
    background-color: #fef3f2;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(67, 20, 7, 0.1);
}

.input, .textarea, .select select {
    border-color: rgba(67, 20, 7, 0.3);
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.125em rgba(194, 65, 12, 0.25);
}

.input.error, .textarea.error {
    border-color: #dc2626;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

.thanks-icon {
    color: var(--accent);
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
}

.legal-content ul {
    margin-left: 20px;
}

.audit-area-box {
    height: 100%;
    padding: 30px;
}

.audit-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.timeline-content {
    padding: 20px;
    background-color: var(--surface);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(67, 20, 7, 0.1);
}

.deliverable-card {
    height: 100%;
}

.deliverable-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-circle {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }

    .hero-image-circle img {
        height: 300px;
    }

    .step-item {
        margin-bottom: 50px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .button {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--surface);
        box-shadow: 0 8px 16px rgba(67, 20, 7, 0.1);
    }
    
    .navbar-burger.is-active span {
        background-color: var(--accent);
    }
}