/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4D4D4D;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 120px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4D4D4D;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center; /* ou 'flex-start' para alinhar ao topo do logo */
    gap: 10px; /* espaço entre o logo e os textos */
}

.logo span {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ou 'flex-start' para alinhar ao topo */
}

.item-line {
    margin: 0;
    line-height: 1.4;
    color: #ccc; /* ou qualquer cor que combine com o rodapé */
    font-size: 14px; /* ajuste conforme necessário */
}

.logo {
    align-items: flex-start;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-left {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-right: 8rem;
}

.nav-right {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    margin-left: 8rem;
}

.nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
}

.nav-menu a {
    text-decoration: none;
    color: #4D4D4D;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00C7D5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00C7D5 0%, #00A8B5 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-top: 2rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #00C7D5;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #00C7D5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4D4D4D;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00C7D5;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 199, 213, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-item h3 {
    color: #4D4D4D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #6D6D6D;
    line-height: 1.6;
}

/* Technology Role Section */
.technology-role {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.technology-role::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 199, 213, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.technology-role h2 {
    color: white;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.role-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.role-option {
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.role-option.positive {
    background: linear-gradient(135deg, rgba(0, 199, 213, 0.15) 0%, rgba(52, 152, 219, 0.15) 100%);
    border: 2px solid rgba(0, 199, 213, 0.5);
}

.role-option.negative {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.15) 100%);
    border: 2px solid rgba(231, 76, 60, 0.5);
}

.role-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.role-option.positive:hover {
    border-color: #00C7D5;
    background: linear-gradient(135deg, rgba(0, 199, 213, 0.25) 0%, rgba(52, 152, 219, 0.25) 100%);
}

.role-option.negative:hover {
    border-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.25) 0%, rgba(192, 57, 43, 0.25) 100%);
}

.role-icon-wrapper {
    margin-bottom: 1.5rem;
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.role-option.positive .role-icon {
    color: #00C7D5;
}

.role-option.negative .role-icon {
    color: #e74c3c;
}

.role-option:hover .role-icon {
    transform: scale(1.1) rotate(5deg);
}

.role-option h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.role-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.role-question-wrapper {
    margin: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}

.role-question {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.role-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.technology-role .btn-cta {
    background: linear-gradient(135deg, #00C7D5 0%, #3498db 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 199, 213, 0.3);
}

.technology-role .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 199, 213, 0.4);
    background: linear-gradient(135deg, #3498db 0%, #00C7D5 100%);
}

/* Transformation Journey Section */
.transformation-journey {
    padding: 80px 0;
    background: white;
}

.transformation-journey h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #4D4D4D;
    font-size: 2.2rem;
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.journey-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6D6D6D;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00C7D5, #00A8B5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4D4D4D;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #6D6D6D;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C7D5;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00C7D5, #00A8B5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4D4D4D;
    line-height: 1.4;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00C7D5 0%, #00A8B5 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="70" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #fff;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo {
    height: 100px;
}

.footer-brand p {
    color: #0e7785;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-brand .cnpj-line {
    font-size: 0.7rem;
    color: #0e7785;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0e7785;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #8a8787;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00C7D5;
}

.footer-bottom {
    border-top: 1px solid #6D6D6D;
    padding-top: 2rem;
    text-align: center;
    color: #8a8787;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-brand {
        position: static;
        transform: none;
        order: -1;
        margin-bottom: 1rem;
    }
    
    .nav-left,
    .nav-right {
        flex: none;
        margin: 0;
        justify-content: center;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav {
        min-height: 100px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .role-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .technology-role h2,
    .transformation-journey h2 {
        font-size: 1.8rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .advantage-item {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.advantage-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for better UX */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }