:root {
    --primary-color: #00a3e0;
    --secondary-color: #00b488;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --text-color: #444444;
    --light-text: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

section {
    position: relative;
    overflow: visible;
    padding-bottom: 40px;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-text);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-text);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 163, 224, 0.3);
    color: var(--light-text);
}

.btn-outline {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--light-text);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.8;
}

.section-header.light {
    color: var(--light-text);
}

.section-header.light .section-title {
    color: var(--light-text);
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.navbar .logo {
    display: block;
    position: relative;
    height: 50px;
    width: 150px; /* Ajuste com base no tamanho real do seu logo */
}

.navbar .logo img {
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.navbar .logo .logo-color {
    opacity: 0;
}

.navbar .logo .logo-white {
    opacity: 1;
    filter: brightness(0) invert(1); /* Torna o logo branco */
}

.navbar.scrolled .logo .logo-color {
    opacity: 1;
}

.navbar.scrolled .logo .logo-white {
    opacity: 0;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 15px;
    color: var(--light-text);
    font-weight: 500;
}

.navbar.scrolled .nav-links a {
    color: var(--dark-color);
}

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

.btn-contato {
    background-color: var(--secondary-color);
    color: var(--light-text) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600 !important;
    margin-left: 15px !important;
}

.btn-contato:hover {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: var(--transition);
}

.navbar.scrolled .hamburger .bar {
    background-color: var(--dark-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light-text);
    overflow: hidden;
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIG9wYWNpdHk9IjAuMiI+PGNpcmNsZSBjeD0iMTEwMCIgY3k9IjUwMCIgcj0iMjAwIiBmaWxsPSJ3aGl0ZSIvPjxjaXJjbGUgY3g9IjMwMCIgY3k9IjgwMCIgcj0iMTUwIiBmaWxsPSJ3aGl0ZSIvPjxjaXJjbGUgY3g9IjkwMCIgY3k9IjIwMCIgcj0iMTAwIiBmaWxsPSJ3aGl0ZSIvPjxjaXJjbGUgY3g9IjYwMCIgY3k9IjYwMCIgcj0iNzAiIGZpbGw9IndoaXRlIi8+PC9nPjwvc3ZnPg==') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    min-height: 500px;
}

.hero-content {
    width: 45%;
    padding-right: 30px;
}

.hero-image {
    width: 15%;
    position: fixed;
}

.hero-image img {
    max-width: 80%;
    margin: 0 auto;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--light-text);
    line-height: 1.2;
}

.hero h1 span {
    color: #fff;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

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

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.9;
    transition: var(--transition);
    padding: 10px;
    width: 30px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

header + .scroll-indicator {
    bottom: 10px;
}

.scroll-indicator:hover {
    opacity: 1;
}



@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animation {
    background: transparent;
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
}

/* Estilo específico para scroll indicators em seções com fundo claro */
.bg-light .scroll-indicator {
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
    box-shadow: 0 5px 15px rgba(0, 163, 224, 0.3);
}

.bg-light .mouse {
    border-color: rgba(255, 255, 255, 0.9);
}

.bg-light .wheel {
    background-color: var(--light-text);
}

.bg-light .arrow span {
    border-right-color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.95);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}

.scroll-indicator a {
    color: var(--light-text);
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 8px;
}

.scroll-indicator p {
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mouse {
    width: 20px;
    height: 30px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(60deg, var(--primary-color), var(--secondary-color)) border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .mouse {
    transform: scale(1.05);
}

.wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.2s ease infinite;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.arrow {
    margin: 10px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 3px solid rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    animation: arrow-down 1.5s infinite;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Estilo para o scroll indicator de volta ao topo */
.back-to-top {
    bottom: 20px;
}

.back-arrow {
    transform: rotate(180deg);
    margin-top: 0;
    margin-bottom: 10px;
}

.back-arrow span {
    animation: arrow-up 1.5s infinite;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}

@keyframes arrow-up {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
}

.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    filter: blur(30px);
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: blobAnimation 10s infinite alternate;
}

.blob-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 100px;
    animation: blobAnimation 7s infinite alternate-reverse;
}

@keyframes blobAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, 20px) scale(1.1);
    }
    66% {
        transform: translate(20px, -20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Sobre Section */
.sobre .row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre .col:first-child {
    flex: 4; /* 40% da largura */
}

.sobre .col:last-child {
    flex: 6; /* 60% da largura */
}

.highlighted-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.card-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Visual Showcase */
.visual-showcase {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.devices-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mockup-device {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 10px solid #fff;
    max-width: 350px;
    width: 100%;
}

.mockup-device:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mockup-device img {
    border-radius: 10px;
}

.mockup-device::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

.mockup-device.mobile {
    max-width: 250px;
}

/* Funcionalidades */
.funcionalidades {
    position: relative;
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.tab-item {
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px;
}

.tab-item i {
    font-size: 20px;
}

.tab-item.active {
    color: var(--primary-color);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid-2x2 .feature-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: calc(100% - 200px); /* Reduzindo a altura para terminar no último badge */
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
    transition: transform 0.4s ease-out, opacity 0.3s ease-in;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.timeline-item:hover .timeline-badge {
    animation-duration: 1.5s;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Estilo específico para o último item da timeline */
.timeline-item.last-item {
    margin-bottom: 0;
}

/* Classe para ajustar a posição da linha da timeline */
.timeline::after {
    content: '';
    position: absolute;
    top: calc(100% - 200px); /* Ajuste para terminar no último badge */
    left: 30px;
    height: 30px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

.timeline-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content .duration {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.timeline-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Entregáveis */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.8;
}

.hero-carousel {
    position: relative;
    width: 55%;
    min-height: 400px;
    overflow: visible;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    display: block;
    transform: scale(0.8) translateX(50px);
    transition: all 0s;
    will-change: transform, opacity;
}

.carousel-image.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
    animation: carouselIn 1.2s ease forwards;
}

.carousel-image.previous {
    z-index: 1;
    animation: carouselOut 1.2s ease forwards;
}

@keyframes carouselIn {
    0% { 
        opacity: 0;
        transform: scale(0.8) translateX(50px);
    }
    100% { 
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes carouselOut {
    0% { 
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    100% { 
        opacity: 0;
        transform: scale(0.8) translateX(-50px);
    }
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Investimento */
.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 40px;
    color: var(--light-text);
    text-align: center;
}

.pricing-header h3 {
    color: var(--light-text);
    font-size: 24px;
}

.price {
    margin: 30px 0;
    font-weight: 700;
}

.currency {
    font-size: 30px;
    vertical-align: top;
    margin-right: 5px;
}

.amount {
    font-size: 60px;
    line-height: 1;
}

.period {
    font-size: 24px;
    opacity: 0.8;
}

.price-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.pricing-features {
    padding: 40px;
}

.payment-plan h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-label {
    font-weight: 600;
}

.payment-value {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
    padding: 0 40px 40px;
}

/* Contato */
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 163, 224, 0.2);
}

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

/* Footer */
.footer {
    background: linear-gradient(150deg, #e07d13 0%, #296a29 100%);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 4px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 50px;
    filter: brightness(1.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    margin-right: 60px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
    text-decoration: none;
}

.footer-col ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 18px;
}

.footer-col ul li a:hover:before {
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
    min-width: 16px;
}

.social-icons {
    display: flex;
    margin-top: 15px;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .section-title {
        font-size: 30px;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: 120px 0 100px;
    }

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

    .hero-content {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre .row {
        flex-direction: column;
    }

    .visual-showcase {
        padding: 50px 0;
    }

    .mockup-device {
        max-width: 300px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 10px 0;
        color: var(--dark-color) !important;
        font-size: 18px;
    }

    .btn-contato {
        margin: 20px 0 0 !important;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info, 
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .timeline::before {
        left: 20px;
        height: calc(100% - 60px);
    }
    
    .timeline::after {
        left: 20px;
        top: calc(100% - 60px);
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-badge.zoom-effect {
        animation-duration: 4s; /* Mais lento em dispositivos móveis */
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .mockup-device {
        max-width: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 450px;
    }

    .pricing-header {
        padding: 30px 20px;
    }

    .pricing-features,
    .pricing-cta {
        padding: 30px 20px;
    }

    .currency {
        font-size: 24px;
    }

    .amount {
        font-size: 48px;
    }

    .period {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid-2x2 {
        max-width: 100%;
        gap: 20px;
    }
    
    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cards-row {
        grid-template-columns: 1fr;
    }

    .not-included ul {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .payment-item {
        flex-direction: column;
        gap: 5px;
    }

    .payment-value {
        font-size: 14px;
    }
}

/* Estilos para o modal de visualização ampliada das imagens */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.open {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: auto;
    padding: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-carousel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-carousel-container {
    position: relative;
    width: 100%;
    height: calc(90vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-carousel-image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.modal-carousel-image.active {
    opacity: 1;
    transform: scale(1);
}

.modal-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.modal-carousel-prev,
.modal-carousel-next {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-carousel-prev:hover,
.modal-carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.modal-carousel-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Estilos para tornar as imagens clicáveis */
.mockup-device {
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.mockup-device:hover {
    transform: scale(1.05);
}

/* Animações de zoom para as imagens */
@keyframes zoomInOut1 {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes zoomInOut2 {
    0% { transform: scale(1.05); }
    33% { transform: scale(1); }
    66% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

@keyframes zoomInOut3 {
    0% { transform: scale(1); }
    25% { transform: scale(1.12); }
    75% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.mockup-device img {
    transition: transform 8s ease-in-out;
}

.mockup-device.zoom-effect-1 img {
    animation: zoomInOut1 15s ease-in-out infinite;
}

.mockup-device.zoom-effect-2 img {
    animation: zoomInOut2 18s ease-in-out infinite;
}

.mockup-device.zoom-effect-3 img {
    animation: zoomInOut3 12s ease-in-out infinite;
}

@keyframes badgeZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.timeline-badge.zoom-effect {
    animation: badgeZoom 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}