:root {
    --primary-color: #040464;
    --secondary-color: #fc0404;
    --accent-color: #ff2020;
    --light-color: #f1f5f9;
    --dark-color: #070738;
    --success-color: #040464;
    --error-color: #fc0404;
    --body-bg: #ffffff;
    --text-color: #34495e;
    --font-black: #000;
    --font-white: #fff;
    --header-height: 80px;
    --section-padding: 50px 0;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(4, 4, 100, 0.1);
    --transition: all 0.3s ease;
    --tertiary-color: #030350;
    --header-height: 62px;
}

html{
    overflow-x: hidden !important;
}

/* Base Styles */
body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

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

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

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

.btn {
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
    
}

.navbar {
    padding: 10px 0;
    background: linear-gradient(to bottom, rgba(4, 4, 100, 0.98), rgba(4, 4, 100, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 5px 0;
    background: linear-gradient(to bottom, rgba(4, 4, 100, 1), rgba(25, 25, 150, 0.9));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    margin-right: auto;
    padding-left: 0;
}

.logo-navbar {
    padding: 3px 6px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.logo-navbar img {
    height: 50px;
    margin-right: 0;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.logo-navbar-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    transition: all 0.3s ease;
}

.logo-navbar-img:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(4, 4, 100, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(252, 4, 4, 0.05) 100%);
    z-index: 0;
}

.logo > * {
    position: relative;
    z-index: 1;
}

.logo img {
    margin-right: 10px;
    height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 5px;
}

.navbar-brand .logo-text:first-of-type {
    color: #000;
}

.navbar-brand .logo-text:last-of-type {
    color: #000;
}

.footer-logo .logo {
    display: inline-flex;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(4, 4, 100, 0.1);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.footer-logo .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(252, 4, 4, 0.05) 100%);
    z-index: 0;
}

.footer-logo .logo-text:first-of-type {
    color: #000;
}

.footer-logo .logo-text:last-of-type {
    color: #000;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    color: #000;
}

.logo-text:first-of-type {
    margin-right: 0;
}

.logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 10px;
    padding: 8px 0;
    border-radius: 0;
    transition: var(--transition);
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0);
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: white !important;
    transform: translateY(0);
    box-shadow: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.navbar-brand:hover .logo-text:last-of-type,
.footer-logo:hover .logo-text:last-of-type {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(4, 4, 100, 0.85), rgba(4, 4, 100, 0.85)), url('assets/app_preview.gif') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-height) + 10px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(252, 4, 4, 0.2), transparent 50%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    animation: fadeInUp 1.4s ease;
}

.hero-cta-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.trailer-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.trailer-body {
    fill: #f39c12;
    stroke: #5bae5e;
    stroke-width: 2;
}

.trailer-truck {
    fill: #34495e;
    stroke: #2c3e50;
    stroke-width: 2;
}

.trailer-wheel {
    fill: #34495e;
    stroke: #2c3e50;
    stroke-width: 2;
    animation: rotate 10s linear infinite;
}

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

.trailer-window {
    fill: #3498db;
    stroke: #2980b9;
    stroke-width: 1;
}

.trailer-signal {
    stroke: #e74c3c;
    animation: signal 2s ease-in-out infinite alternate;
}

@keyframes signal {
    from { stroke-dasharray: 5, 5; }
    to { stroke-dasharray: 1, 1; }
}

/* Services Section */
.services {
    background-color: white;
}

.services h2, .section-description {
    text-align: center;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #6c757d;
}

.services .section-description {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.services .section-description::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

.services-cards {
    margin-top: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(4, 4, 100, 0.15);
}

.service-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    background-color: #f9f9f9;
    text-align: center;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
    transition: var(--transition);
}

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

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
}

.pricing-header h3 {
    margin-bottom: 20px;
    color: white;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    margin-left: 5px;
}

.price-total {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.pricing-extra {
    background-color: rgba(44, 62, 80, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.pricing-calculator {
    margin-top: 60px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-result {
    font-size: 1.5rem;
    margin-top: 20px;
}

.calculator-result #daily-cost {
    color: var(--secondary-color);
    font-weight: 700;
}

.calculator-compare {
    font-size: 1rem;
    color: #7f8c8d;
}

/* About Section */
.about {
    background-color: white;
}

.about-image {
    max-width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
}

.caravanist-svg {
    width: 100%;
    height: auto;
}

.about-card {
    fill: #ecf0f1;
    stroke: #bdc3c7;
    stroke-width: 2;
}

.about-person-head {
    fill: #e74c3c;
}

.about-person-body {
    fill: #3498db;
}

.about-rainbow {
    stroke: var(--secondary-color);
}

.about-wheel {
    fill: #34495e;
    animation: rotate 10s linear infinite;
}

.about-content {
    padding: 20px;
}

.about-tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Mission, Vision, Values Section - Modern Design */
.mission-vision-values {
    padding: 40px 0;
}

.mv-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(44, 62, 80, 0.2);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.mv-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.values-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.values-list li {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 12px;
    display: block;
    text-align: left;
}

.values-list li span {
    font-weight: 700;
    color: var(--dark-color);
    display: inline;
    margin-right: 8px;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.about-content h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Animação de Entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        margin-top: 10px;
        border-radius: 0 0 8px 8px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .logo {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-text-container {
        margin-left: 2px;
    }
}

@media (max-width: 768px) {
    .mission-vision-values {
        padding: 35px 0;
    }

    .mv-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .mv-card h3 {
        font-size: 1.3rem;
    }

    .mv-icon {
        font-size: 2rem;
    }

    .values-list li {
        flex-direction: column;
        gap: 3px;
    }
}

@media (max-width: 576px) {
    .mission-vision-values {
        padding: 30px 0;
    }
    
    .logo {
        padding: 6px 12px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .mv-card {
        padding: 15px;
    }
    
    .mv-card h3 {
        font-size: 1.2rem;
    }
    
    .mv-card p, .values-list li {
        font-size: 0.85rem;
    }

    .mv-icon {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    header {
        padding-top: 5px;
    }
}

/* Animação de Entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .logo {
        padding: 8px 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-text-container {
        margin-left: 2px;
    }
}

@media (max-width: 576px) {
    .logo {
        padding: 6px 12px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    header {
        padding-top: 5px;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: white;
    padding-bottom: 50px;
}

.product-svg {
    width: 100%;
    height: auto;
}

.device-body {
    fill: #34495e;
    stroke: #2c3e50;
    stroke-width: 2;
}

.device-screen {
    fill: #3498db;
    stroke: #2980b9;
    stroke-width: 1;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { fill: #3498db; }
    to { fill: #2ecc71; }
}

.device-button {
    fill: #e74c3c;
}

.device-antenna {
    stroke: #95a5a6;
}

.product-details h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-features {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}

.steps-container {
    margin-top: 30px;
    text-align: center;
}

.steps-container h3 {
    margin-bottom: 25px;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px 20px;
    height: 100%;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 5px;
}

.step-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.platform-features {
    text-align: center;
}

.platform-features h3 {
    margin-bottom: 25px;
}

.platform-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.platform-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.platform-card h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-prev, .testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px 10px;
}

.testimonial-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bdc3c7;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header .section-description {
    max-width: 600px;
}

.contact-container {
    position: relative;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-info-col {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010140 100%);
    color: white;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.contact-info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0wLDAgTDEwMCwwIEwxMDAsMTAwIEwwLDEwMCBaIiBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=');
    background-size: 10px 10px;
    opacity: 0.1;
    z-index: -1;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
    text-align: center;
}

.contact-method i {
    font-size: 1.5rem;
    color: white;
    margin-right: 0;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method:hover i {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
}

.contact-method h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-method p {
    margin: 5px 0 0;
    opacity: 0.9;
}

.social-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.contact-social {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instagram-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    width: 50px;
    height: 50px;
    font-size: 24px;
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.instagram-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
    padding: 40px 30px;
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(4, 4, 100, 0.2);
    background-color: white;
}

.contact-form .form-control.is-invalid {
    border: 2px solid #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    text-align: left;
    display: block;
}

.contact-form .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(4, 4, 100, 0.2);
}

@media (max-width: 991px) {
    .contact-info-col {
        border-radius: 15px 15px 0 0;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info-col, .contact-form {
        padding: 30px 20px;
    }
    
    .contact-method {
        margin-bottom: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
}

.footer-content {
    width: 100%;
}

.footer-content .logo {
    display: inline-flex;
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(4, 4, 100, 0.1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.footer-content .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(252, 4, 4, 0.05) 100%);
    z-index: 0;
}

.footer-content p {
    margin: 5px 0;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 15px 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-newsletter .input-group {
    margin-top: 15px;
}

.footer-newsletter .form-control {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-left: 20px;
}

.footer-newsletter .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-right: 20px;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 15px;
        border-radius: 0 0 8px 8px;
        margin-top: 10px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 35px 0;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-carousel {
        height: 350px;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonial-carousel {
        height: 400px;
    }
}

footer p{
    margin-top: 1rem;
}

.product-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    text-align: center;
}

.product-image img {
    box-shadow: 0 10px 25px rgba(4, 4, 100, 0.1);
    border-radius: 8px;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.02);
}

/* #como-funciona .section-description, #contato .section-description{
    text-align: left;
} */

.product-category {
    display: inline-block;
    padding: 3px 8px;
    background-color: #5bae5e;
    color: white;
    font-size: 0.8rem;
    border-radius: 3px;
    margin-bottom: 8px;
}

/* Botões e elementos interativos */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

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

.logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Seção de Desenvolvimento de Alta Performance com Logo */
.development-showcase {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
    margin-top: calc(var(--header-height) + 10px);
}

.development-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(0.5) contrast(1.1);
    min-width: 100%;
    min-height: 100%;
    background: url('assets/fundo-site.gif') no-repeat center center;
    background-size: cover;
}

.development-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(4, 4, 100, 0.6), rgba(4, 4, 100, 0.5));
    z-index: 1;
}

.development-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
}

.development-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
    animation: floatLogo 3s ease-in-out infinite;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform-origin: center center;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.development-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.development-description {
    color: white;
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.development-showcase .hero-benefit {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.3s ease;
}

.development-showcase .hero-benefit i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.development-showcase .hero-buttons {
    margin-top: 30px;
    animation: fadeInUp 1.4s ease;
}

.development-showcase .hero-cta-badge {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    color: white;
}

.tech-clouds {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('assets/tech-logos.jpg') repeat-x;
    background-size: contain;
    opacity: 0.2;
    z-index: 1;
    animation: moveClouds 30s linear infinite;
}

@keyframes moveClouds {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 0;
    }
}

@media (max-width: 992px) {
    .development-title {
        font-size: 2.2rem;
    }
    
    .development-description {
        font-size: 1.2rem;
    }
    
    .development-logo {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .development-title {
        font-size: 1.8rem;
    }
    
    .development-description {
        font-size: 1rem;
    }
    
    .development-logo {
        max-width: 200px;
    }
}

.logo-about {
    max-width: 80%;
    height: auto;
    animation: floatLogoAbout 3s ease-in-out infinite;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform-origin: center center;
}

@keyframes floatLogoAbout {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.video-showcase {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(4, 4, 100, 0.05);
    border-radius: 10px;
}

.video-showcase h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.video-showcase video {
    max-height: 500px;
    object-fit: contain;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Portfolio Section */
.portfolio {
    background-color: #f9f9f9;
}

.portfolio-filter {
    margin-bottom: 30px;
}

.portfolio-filter button {
    margin: 0 5px;
    transition: var(--transition);
}

.portfolio-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.portfolio-img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.portfolio-img img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 20px;
}

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

/* Logo dos projetos nos cards */
.project-logo-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.project-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.portfolio-card:hover .project-logo-overlay {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 100, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.portfolio-info h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    flex-grow: 1;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Modal do Portfolio */
.project-modal-logo-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.project-modal-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-modal-logo:hover {
    transform: scale(1.05);
}

.project-modal-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    box-shadow: var(--box-shadow);
}

.project-modal-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.project-modal-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-modal-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
}

.modal-dialog.modal-xl {
    max-width: 90%;
}

@media (max-width: 992px) {
    .modal-dialog.modal-xl {
        max-width: 95%;
    }
    
    .project-modal-logo-container {
        padding: 10px;
    }
    
    .project-modal-logo {
        max-width: 100px;
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .project-modal-image {
        max-height: 400px;
    }
    
    .project-logo-overlay {
        top: 8px;
        left: 8px;
        padding: 6px;
    }
    
    .project-logo {
        width: 40px;
        height: 40px;
    }
    
    .project-modal-logo {
        max-width: 80px;
        max-height: 60px;
    }
    
    /* Portfolio mobile adjustments */
    .portfolio-img img {
        padding: 10px;
        height: 180px;
    }
    
    .portfolio-info {
        padding: 15px;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .portfolio-grid {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .project-modal-image {
        max-height: 300px;
    }
    
    .modal-dialog.modal-xl {
        max-width: 100%;
        margin: 0.5rem;
    }
    
    .project-logo-overlay {
        top: 5px;
        left: 5px;
        padding: 4px;
    }
    
    .project-logo {
        width: 35px;
        height: 35px;
    }
    
    .project-modal-logo-container {
        padding: 8px;
    }
    
    .project-modal-logo {
        max-width: 70px;
        max-height: 50px;
    }
    
    /* Portfolio mobile adjustments */
    .portfolio-img img {
        padding: 10px;
        height: 180px;
    }
    
    .portfolio-info {
        padding: 15px;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .portfolio-grid {
        align-items: flex-start;
    }
}

.footer-content .logo-text:first-of-type,
.footer-content .logo-text:last-of-type {
    color: #000;
}

/* Estilos para Ícones dos Títulos */
h2 i, h3 i {
    transition: all 0.3s ease;
    margin-right: 10px !important;
}

h2:hover i, h3:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Ícones dos títulos principais */
h2 i {
    color: var(--secondary-color) !important;
    font-size: 0.9em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ícones dos subtítulos */
h3 i {
    color: var(--primary-color) !important;
    font-size: 0.8em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animação especial para ícones dos títulos principais */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h2 i {
    animation: iconPulse 3s ease-in-out infinite;
}

/* Responsividade para ícones */
@media (max-width: 768px) {
    h2 i, h3 i {
        margin-right: 8px !important;
        font-size: 0.85em;
    }
    
    h2 i {
        font-size: 0.8em;
    }
    
    h3 i {
        font-size: 0.75em;
    }
}

@media (max-width: 576px) {
    h2 i, h3 i {
        margin-right: 6px !important;
    }
    
    h2 i {
        font-size: 0.75em;
    }
    
    h3 i {
        font-size: 0.7em;
    }
    
    /* Reduzir animação em telas pequenas */
    h2 i {
        animation: none;
    }
}

/* Portfolio Grid - Permite alturas variáveis baseadas no conteúdo */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-item {
    display: flex;
}