* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #070707 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-logo {
    margin-bottom: 40px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.loading-spinner {
    margin-bottom: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(19, 220, 220, 0.3);
    border-top: 3px solid #13DCDC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text p {
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #13DCDC;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

body {
    font-family: 'Arimo', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 7, 7, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 25px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    padding: 0.6px;
    background: linear-gradient(90deg, #070707 0%, #13DCDC 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.nav a {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
}

.nav a:hover {
    color: #13DCDC;
    background: rgba(19, 220, 220, 0.1);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.cta-button {
    font-family: Antonio, sans-serif;
    background: linear-gradient(135deg, #13DCDC, #0FB8B8);
    color: #070707;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 220, 220, 0.3);
}

.cta-button i {
    font-size: 16px;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    background: rgba(7, 7, 7, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}





.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Desktop - manter ordem original */
.hero-visual {
    order: 2;
}

.hero-text {
    order: 1;
}

.hero-text h1 {
    font-family: 'Antonio', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.highlight {
    color: #13DCDC;
}

.hero-text p {
    font-family: 'Arimo', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-container {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: absolute;
    width: 140px;
    height: 240px;
    background: #222;
    border-radius: 25px;
    border: 3px solid #333;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.phone-1 {
    left: 0;
    top: 80px;
    transform: rotate(-15deg);
    z-index: 1;
}

.phone-1 .phone-screen {
    background-image: url('/img/Head.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.phone-2 {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-2 .phone-screen {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #13DCDC;
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.phone-3 {
    right: 0;
    top: 80px;
    transform: rotate(15deg);
    z-index: 1;
}

.phone-3 .phone-screen {
    background-image: url('/img/Head.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #000;
    border-radius: 3px;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #13DCDC, transparent);
    z-index: 2;
}

/* Clients Section */
.clients {
    background: #13DCDC;
    padding: 40px 0;
    overflow: hidden;
}

.clients-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.clients-title {
    font-family: 'Arimo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clients-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 80px;
}

.clients-logos-container {
    width: calc(100% - 120px);
    overflow: hidden;
    margin: 0 60px;
    position: relative;
}

.clients-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: transform 0.5s ease;
    width: max-content;
    min-height: 60px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    flex-shrink: 0;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    display: block;
}

.carousel-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 50%;
    background: transparent;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-arrow:hover {
    background: #000;
    color: #13DCDC;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #999;
    color: #666;
}

.carousel-arrow.disabled:hover {
    background: #ccc;
    color: #666;
    transform: none;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    text-align: center;
}

/* Progress Line */
.progress-line-container {
    background: #000;
    padding: 40px 0;
    position: relative;
}

.progress-line {
    position: relative;
    height: 2px;
    border: 1px solid;
    border-image-source: linear-gradient(90deg, #070707 0%, #10B4B4 50%, #070707 100%);
    border-image-slice: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.progress-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.indicator-outer {
    width: 24px;
    height: 24px;
    border: 2px solid #13DCDC;
    border-radius: 50%;
    background: transparent;
    position: relative;
    box-shadow: 0 0 10px rgba(19, 220, 220, 0.3);
}

.indicator-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #13DCDC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-inner i {
    color: #000;
    font-size: 8px;
    margin-top: 1px;
}

.video-section h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}



/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #000;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solutions-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #13DCDC;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.solutions-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    /* letter-spacing: 0; */
}

.solutions-text p {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 100%;
}

.solutions-text p:last-of-type {
    margin-bottom: 30px;
}

.solutions-cta {
    font-family: 'Antonio', sans-serif;
    background: #13DCDC;
    color: #000;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.solutions-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 220, 220, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid;
    border-image-source: linear-gradient(360deg, #070707 0%, #13DCDC 100%);
    border-image-slice: 1;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    position: absolute;
    top: -20px;
    right: 16px;
    z-index: 10;
    background: rgba(19, 220, 220, 1);
    border-radius: 5px;
    padding: 6px 6px;
    display: flex;
    align-content: center;
    align-items: center;
}

.service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    /* transform: rotate(15deg); */
}

.service-number {
    font-family: 'Antonio', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #13DCDC;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-title {
    font-family: 'Arimo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-family: 'Arimo', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #13DCDC;
    position: absolute;
    left: 0;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}



.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.experience-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #13DCDC;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.experience-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 100%;
    letter-spacing: 0;
}

.experience-text p {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: 0;
}

.experience-cta {
    font-family: 'Antonio', sans-serif;
    background: #13DCDC;
    color: #000;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.experience-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 220, 220, 0.3);
}

.experience-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.content-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #13DCDC;
    margin-bottom: 15px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-section h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
    line-height: 1.3;
}

.content-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Quote Section */
.quote-section {
    padding: 0;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.quote-section h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 0;
}



.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-background img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.quote-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 40px;
}

.quote-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #13DCDC;
    letter-spacing: 0;
    text-transform: uppercase;
}

.quote-cta {
    font-family: Antonio, sans-serif;
    background: #13DCDC;
    color: #000;
    padding: 4px 22px;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.quote-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 220, 220, 0.3);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #000;
    position: relative;
    z-index: 1;
}

.faq h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s;
}

.faq-item.active {
    border: 1px solid #13DCDC;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-question {
    font-family: 'Arimo', sans-serif;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    padding: 0 0 15px 0;
    margin-bottom: 15px;
}

.faq-question:hover {
    color: #13DCDC;
}

.faq-answer {
    font-family: 'Arimo', sans-serif;
    padding: 0 0 20px 0;
    color: rgba(89, 89, 89, 1);
    line-height: 1.6;
    font-size: 16px;
    display: none;
}

.faq-answer.active {
    display: block;
    padding: 0;
}

.faq-arrow {
    transition: transform 0.3s;
    color: #13DCDC;
    font-size: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta {
    background: #13DCDC;
    color: #000;
    padding: 0;
    overflow: visible;
    position: relative;
}

.final-cta-top {
    background: #000;
    height: 100px;
    width: 100%;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.final-cta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.chess-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    transform: translateY(-80px);
    z-index: 10;
    position: relative;
}

.final-cta-subtitle {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0;
    text-transform: uppercase;
}

.final-cta-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0;
    line-height: 100%;
}

.final-cta-text p {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 100%;
    letter-spacing: 0;
}

.final-cta-button {
    font-family: Antonio, sans-serif;
    background: #000;
    color: #13DCDC;
    border: 2px solid #13DCDC;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.final-cta-button:hover {
    background: #000;
    color: #13DCDC;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-contact p {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.contact-label {
    color: #13DCDC;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: #13DCDC;
    border-color: #13DCDC;
    color: #000;
}

.footer-bottom {
    font-family: 'Arimo', sans-serif;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    font-family: 'Arimo', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #13DCDC;
}

.separator {
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(7, 7, 7, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav li {
        margin: 0;
    }

    .nav a {
        font-size: 18px;
        padding: 15px 25px;
    }

    .header .cta-button {
        display: none;
        /* Esconder botão do menu no mobile */
    }

    .hero {
        height: 100vh;
        min-height: 600px;
        padding-top: 80px;
        /* Espaço para o header fixo */
    }

    .hero .container {
        height: calc(100% - 80px);
        /* Subtrai o padding-top */
        display: flex;
        align-items: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        gap: 30px;
        order: 2;
        /* Imagem primeiro */
    }

    .hero-visual {
        order: 1;
        /* Imagem primeiro */
    }

    .hero-text {
        order: 2;
        /* Texto no meio */
    }

    .hero-text .cta-button {
        order: 3;
        /* Botão por último */
        margin-top: 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-visual img {
        max-width: 280px;
        height: auto;
    }

    .solutions-content,
    .experience-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        top: -6px;
        right: -6px;
        padding: 3px;
    }

    .service-icon img {
        width: 28px;
        height: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .clients-content {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .clients-carousel {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        max-width: 100%;
    }

    .clients-logos-container {
        width: calc(100% - 80px);
        margin: 0 40px;
    }

    .clients-logos {
        justify-content: center;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    /* Melhorias para a seção quote no mobile */
    .quote-section {
        height: 70vh;
    }

    .quote-content {
        left: 0;
        transform: translate(0px, 50%);
        top: 0;
    }

    .quote-cta {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 26px;
    }
}



@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .phones-container {
        width: 300px;
        height: 400px;
    }

    .phone {
        width: 110px;
        height: 190px;
    }

    .phone-1 {
        left: 0;
        top: 60px;
        transform: rotate(-12deg);
    }

    .phone-3 {
        right: 0;
        top: 60px;
        transform: rotate(12deg);
    }
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #000;
    margin: 2% auto;
    padding: 0;
    border: 1px solid #13DCDC;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #13DCDC, #0FB8B8);
    color: #000;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.close {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.close:hover {
    opacity: 0.7;
}

.contact-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #13DCDC;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #13DCDC;
    box-shadow: 0 0 10px rgba(19, 220, 220, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #13DCDC, #0FB8B8);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Antonio', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 220, 220, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsivo para o modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Uma coluna no mobile */
        gap: 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Evita zoom no iOS */
    }
}

/* Notificações Customizadas */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    background: linear-gradient(135deg, #13DCDC, #0FB8B8);
    color: #000;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(19, 220, 220, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 350px;
    position: relative;
    overflow: hidden;
}

.notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.notification-icon {
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-text p {
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Notificação de Erro */
.notification.error .notification-content {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: #fff;
}

.notification.error .notification-icon {
    color: #fff;
}

.notification.error .notification-close {
    color: #fff;
}

.notification.error .notification-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsivo para notificações */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }

    .notification-content {
        min-width: auto;
        padding: 15px 20px;
    }

    .notification-text h3 {
        font-size: 16px;
    }

    .notification-text p {
        font-size: 13px;
    }
}

/* Botão Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #13DCDC, #0FB8B8);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(19, 220, 220, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(19, 220, 220, 0.4);
    background: linear-gradient(135deg, #0FB8B8, #13DCDC);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsivo para o botão scroll to top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Loading Screen Mobile */
    .loading-logo img {
        height: 60px;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .loading-text p {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    /* Video responsivo */
    .video-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .video-section h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}