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

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.generic-logo {
    width: 100%;
    height: 100%;
    color: #e91e63;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.generic-logo-footer {
    width: 100%;
    height: 100%;
    color: #90caf9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e91e63;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 50%, #f0e6ff 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e91e63, #f48fb1);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #9c27b0, #ce93d8);
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #673ab7, #b39ddb);
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3f51b5, #9fa8da);
    bottom: 20%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3748;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket {
    position: relative;
    z-index: 5;
    animation: rocketFloat 4s ease-in-out infinite;
}

.rocket-body {
    width: 80px;
    height: 200px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 40px 40px 20px 20px;
    position: relative;
}

.rocket-window {
    width: 30px;
    height: 30px;
    background: #e3f2fd;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #1976d2;
}

.rocket-fin {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #1565c0;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.rocket-flame {
    width: 30px;
    height: 60px;
    background: linear-gradient(180deg, #ff9800, #f57c00);
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: flame 0.5s ease-in-out infinite alternate;
}

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

@keyframes flame {
    0% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(1.2); }
}

.character {
    position: absolute;
    animation: characterFloat 5s ease-in-out infinite;
}

.character-1 {
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.character-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.character-body {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 20px;
    position: relative;
}

.character-head {
    width: 30px;
    height: 30px;
    background: #ffdbcb;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

.gear {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.gear-1 {
    top: 10%;
    left: 30%;
}

.gear-2 {
    bottom: 10%;
    right: 30%;
    animation-direction: reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-analysis {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #f48fb1);
    border-radius: 20px;
    position: relative;
}

.icon-analysis::before {
    content: '📊';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.icon-development {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9c27b0, #ce93d8);
    border-radius: 20px;
    position: relative;
}

.icon-development::before {
    content: '⚙️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.icon-evolution {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #673ab7, #b39ddb);
    border-radius: 20px;
    position: relative;
}

.icon-evolution::before {
    content: '📈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Transform Section */
.transform-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.transform-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transform-illustration {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transform-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 50%;
    opacity: 0.9;
    z-index: 1;
}

.transform-rocket {
    position: relative;
    z-index: 3;
    animation: transformRocketFloat 4s ease-in-out infinite;
}

.transform-rocket-body {
    width: 60px;
    height: 150px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 30px 30px 15px 15px;
    position: relative;
}

.transform-rocket-window {
    width: 20px;
    height: 20px;
    background: #fff3e0;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #f57c00;
}

.transform-rocket-fin {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #ef6c00;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.transform-rocket-flame {
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, #ff5722, #d84315);
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: transformFlame 0.5s ease-in-out infinite alternate;
}

.transform-character {
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 2;
    animation: transformCharacterFloat 5s ease-in-out infinite;
}

.transform-character-body {
    width: 30px;
    height: 45px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 15px;
    position: relative;
}

.transform-character-head {
    width: 25px;
    height: 25px;
    background: #ffdbcb;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.transform-character-arm {
    width: 20px;
    height: 8px;
    background: #ffdbcb;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: -15px;
    transform: rotate(-30deg);
}

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

@keyframes transformFlame {
    0% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(1.3); }
}

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

.transform-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.transform-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3748;
    margin-bottom: 2rem;
}

.transform-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Additional Services Section */
.additional-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.additional-services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.additional-services-badge {
    display: inline-block;
    background: linear-gradient(135deg, #673ab7, #9c27b0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.additional-services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.additional-services-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.additional-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.additional-service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.additional-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.development-icon {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
}

.design-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.leads-icon {
    background: linear-gradient(135deg, #e91e63, #f48fb1);
}

.chatbot-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.icon-gear::before {
    content: '⚙️';
    font-size: 2rem;
}

.icon-crown::before {
    content: '👑';
    font-size: 2rem;
}

.icon-target::before {
    content: '🎯';
    font-size: 2rem;
}

.icon-chat::before {
    content: '💬';
    font-size: 2rem;
}

.additional-service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.additional-service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Statistics Section */
.statistics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.statistics-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.statistics-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.statistics-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.statistics-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

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

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 600;
}

.stat-item:nth-child(1) .stat-number {
    color: #e91e63;
}

.stat-item:nth-child(2) .stat-number {
    color: #ff9800;
}

.stat-item:nth-child(3) .stat-number {
    color: #673ab7;
}

.stat-item:nth-child(4) .stat-number {
    color: #4caf50;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.equipe-icon {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
}

.resultado-icon {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

.prazo-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Illustration */
.why-choose-illustration {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-member {
    position: absolute;
    animation: teamFloat 4s ease-in-out infinite;
}

.member-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.member-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.member-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.member-body {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 25px;
    position: relative;
}

.member-head {
    width: 35px;
    height: 35px;
    background: #ffdbcb;
    border-radius: 50%;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
}

.puzzle-pieces {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.puzzle-piece {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    animation: puzzleFloat 3s ease-in-out infinite;
}

.piece-1 {
    background: linear-gradient(135deg, #e91e63, #f48fb1);
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.piece-2 {
    background: linear-gradient(135deg, #9c27b0, #ce93d8);
    top: -40px;
    right: -40px;
    animation-delay: 1s;
}

.piece-3 {
    background: linear-gradient(135deg, #673ab7, #b39ddb);
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

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

@keyframes puzzleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.contact-cta-illustration {
    position: relative;
    height: 400px;
}

.cta-rocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: ctaRocketFloat 4s ease-in-out infinite;
}

.cta-rocket-body {
    width: 100px;
    height: 200px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    border-radius: 50px 50px 25px 25px;
    position: relative;
}

.cta-rocket-window {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #1976d2;
}

.cta-rocket-fin {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid #1565c0;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-rocket-flame {
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, #ff5722, #d84315);
    border-radius: 0 0 50% 50%;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: ctaFlame 0.5s ease-in-out infinite alternate;
}

.cta-characters {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-character {
    position: absolute;
    animation: ctaCharFloat 5s ease-in-out infinite;
}

.char-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.char-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.char-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

.char-body {
    width: 35px;
    height: 50px;
    background: linear-gradient(135deg, #ff7043, #d84315);
    border-radius: 17px;
    position: relative;
}

.char-head {
    width: 25px;
    height: 25px;
    background: #ffdbcb;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.char-tool {
    width: 15px;
    height: 15px;
    background: #ffc107;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: -10px;
}

.cta-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: cloudFloat 8s ease-in-out infinite;
}

.cloud-1 {
    width: 80px;
    height: 40px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.cloud-2 {
    width: 60px;
    height: 30px;
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.cloud-3 {
    width: 70px;
    height: 35px;
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes ctaRocketFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

@keyframes ctaFlame {
    0% { transform: translateX(-50%) scaleY(1); }
    100% { transform: translateX(-50%) scaleY(1.3); }
}

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

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

.contact-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    flex-wrap: wrap;
}

.whatsapp-btn,
.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background: linear-gradient(135deg, #4285f4, #1976d2);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.whatsapp-icon,
.phone-icon {
    width: 20px;
    height: 20px;
}

/* Brands Section */
.brands-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.brands-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.brands-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.brands-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brands-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: #666;
}

.brand-1 {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
}

.brand-2 {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c2185b;
    font-style: italic;
}

.brand-3 {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #388e3c;
}

.brand-4 {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #f57c00;
}

.brand-5 {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64b5f6, #90caf9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-link {
    color: #90caf9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.contact-text {
    color: #b3c5ef;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
}

.email-link:hover {
    background: #ea4335;
    color: white;
}

.phone-link:hover {
    background: #4285f4;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #90caf9;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #b3c5ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-copyright {
    color: #b3c5ef;
}

.footer-copyright strong {
    color: #90caf9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .contact-buttons {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .brands-carousel {
        gap: 2rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .nav {
        padding: 0 1rem;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(233, 30, 99, 0.1);
    }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-illustration {
        height: 250px;
        order: -1;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .transform-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .transform-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .transform-illustration {
        height: 250px;
        order: -1;
    }
    
    .transform-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .additional-services-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .additional-services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .additional-service-card {
        margin: 0 0.5rem;
    }
    
    .statistics-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .statistics-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .why-choose-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .why-choose-illustration {
        height: 250px;
        order: -1;
    }
    
    .why-choose-features {
        gap: 1.5rem;
    }
    
    .contact-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .contact-cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .contact-cta-description {
        font-size: 1.1rem;
    }
    
    .contact-cta-illustration {
        height: 250px;
        order: -1;
    }
    
    .contact-buttons {
        flex-direction: column;
        max-width: 100%;
        gap: 1rem;
    }
    
    .whatsapp-btn,
    .phone-btn {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .brands-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .brands-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .brands-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .brand-logo {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .transform-title {
        font-size: 2rem;
    }
    
    .additional-services-title {
        font-size: 1.8rem;
    }
    
    .additional-service-card {
        padding: 2rem 1.5rem;
    }
    
    .statistics-title {
        font-size: 1.8rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .why-choose-content {
        padding: 0 0.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .contact-cta-title {
        font-size: 1.8rem;
    }
    
    .contact-cta-content {
        padding: 0 0.5rem;
    }
    
    .whatsapp-btn,
    .phone-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .brands-title {
        font-size: 1.8rem;
    }
    
    .brands-carousel {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .brand-logo {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .footer-brand {
        gap: 1.5rem;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}
