:root {
    /* Cores do Logo Oficial */
    --color-primary: #f5911d;
    /* Laranja Oficial */
    --color-primary-dark: #cc7918;
    --color-green: #29ad4c;
    --color-red: #e6231d;
    --color-blue: #009fe3;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;

    /* Cores de Interface */
    --bg-dark: #0a0a0a;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;

    /* Fontes */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

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

a:hover {
    text-decoration: none !important;
    color: var(--color-primary);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary {
    background-color: var(--color-whatsapp);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--color-whatsapp);
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-whatsapp) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    position: relative;
    z-index: 2;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(245, 145, 29, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-cta {
    background-color: var(--color-whatsapp);
    color: white !important;
    text-decoration: none !important;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid var(--color-whatsapp);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--color-whatsapp) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-secondary {
    border: 2px solid var(--text-white);
    color: white !important;
    text-decoration: none !important;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-dark) !important;
    transform: translateY(-3px);
}

/* Animated Circles */
.hero-bg-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 20s infinite alternate;
}

.circle-primary {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    right: 10%;
}

.circle-secondary {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    bottom: 20%;
    right: 30%;
    opacity: 0.15;
    animation-delay: -5s;
}

.circle-accent {
    width: 250px;
    height: 250px;
    background: var(--color-blue);
    top: 40%;
    right: -5%;
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 100px);
    }
}

/* Services */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
}

.service-card h3 {
    margin: 20px 0 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(245, 145, 29, 0.02), transparent);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-title-box {
    flex: 1;
}

.about-title-box h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 0;
    color: var(--color-primary);
}

.about-content {
    flex: 1.2;
    text-align: left;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.line-decorator {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 30px;
}

.about-cta {
    margin-top: 40px;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stat-item .label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(245, 145, 29, 0.05), transparent);
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.contact-list li strong {
    color: var(--color-primary);
}

.contact-list li.phone-label strong,
.contact-list li.phone-label {
    color: var(--color-whatsapp) !important;
}

/* Footer Colors */
#main-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 150px 0 50px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-title-box h2 {
        font-size: 2.5rem;
        text-align: center;
    }

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

    .line-decorator {
        margin: 20px auto 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--color-whatsapp-dark);
}

.wa-svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dynamic Abstract Scene */
.dynamic-abstract-scene {
    width: 100%;
    max-width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-abstract-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(245, 145, 29, 0.15));
}

.pulse-node {
    animation: centralPulse 4s infinite alternate ease-in-out;
}

.orbiting-node {
    transform-origin: 250px 250px;
}

.node-1 {
    animation: orbit 20s infinite linear;
}

.node-2 {
    animation: orbit 15s infinite linear reverse;
}

.node-3 {
    animation: orbit 25s infinite linear;
}

.glass-float-box {
    position: absolute;
    top: 20%;
    right: 10%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatVertical 6s infinite alternate ease-in-out;
}

.glass-float-box.second {
    top: 60%;
    left: 5%;
    animation-delay: -3s;
}

.glass-float-box .label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.9rem;
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes centralPulse {
    from {
        transform: scale(1);
        opacity: 0.8;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes floatVertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

.text-orange {
    color: var(--color-primary);
}

.text-bold {
    font-weight: 700;
}