.red-text {
    color: red;
}

.green-text {
    color: green;
}

.blue-text {
    color: blue;
}

/* Service Hero Section */
.service-hero {
    min-height: 120vh;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Adjust based on header height */
}

/* Background específico para página de sites profissionais */
.service-hero.sites-profissionais {
    background: url('./images/servico-website.jpg') center/cover no-repeat;
}

/* Background específico para página de perfil do google */
.service-hero.perfil-google {
    background: url('images/bg-perfil-google.png') center/cover no-repeat;
}

/* Background para a página de catálogos digitais (vídeo) */
.service-hero.catalogos-digitais {
    background: none;
}

/* Background específico para página de drone - apenas vídeo */
.service-hero.drone {
    background: none;
}

/* Background específico para página de tour virtual - apenas vídeo */
.service-hero.tour-virtual {
    background: none;
}

/* Background específico para página de fotos para cardápio */
.service-hero.fotos-cardapio {
    background: url('images/miniatura-cardapio.png') center/cover no-repeat, linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.service-hero.catalogos-digitais .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Background específico para página de drone (vídeo) */
.service-hero.drone video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-hero.tour-virtual video,
.service-hero.fotos-cardapio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Remove overlay das páginas com vídeo para mostrar conteúdo original */
.service-hero.catalogos-digitais::before {
    display: none;
}

/* Overlay mais escuro para página tour virtual */
.service-hero.tour-virtual::before {
    background: rgba(0, 0, 0, 0.4);
}

/* Overlay mais escuro para página drone */
.service-hero.drone::before {
    background: rgba(0, 0, 0, 0.5);
}

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

.service-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.service-title .highlight {
    color: #3b82f6;
    position: relative;
}

/* Highlight cinza claro com transparência para página de drone */
.text-green {
    color: green;
}

.text-blue {
    color: blue;
}

.text-red {
    color: red;
}

.text-red {
    color: red;
}

.service-hero.drone .service-title .highlight {
    color: #e5e7eb;
    opacity: 0.8;
}

/* Highlight branco com transparência para página de catálogos digitais */
.service-hero.catalogos-digitais .service-title .highlight {
    color: rgba(255, 255, 255, 0.8);
}

.service-hero.catalogos-digitais .service-title .title-prefix {
    color: #3b82f6; /* Azul */
}

.service-breadcrumb {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.service-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #60a5fa;
}

.service-breadcrumb span {
    color: #e2e8f0;
}

/* Pain Point Section */

.pain-section {
    background-color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pain-section::before,
.pain-section::after,
.pain-section .pain-content::before {
    content: '';
    position: absolute;
    background: rgba(239, 68, 68, 0.1); /* Light red for visual elements */
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

.pain-section::before {
    width: 250px;
    height: 250px;
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.pain-section::after {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -15%;
    animation-delay: 5s;
}

.pain-section .pain-content::before {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 10%;
    animation-delay: 2.5s;
    background: rgba(66, 153, 225, 0.1); /* Light blue for another element */
}

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


.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

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

.pain-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    position: relative;
}

.text-red {
    color: red;
}

.pain-title::after {
    content: '⚠️';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

.pain-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    border-left: 4px solid red;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #6b7280;
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before,
.solution-section::after {
    content: '';
    position: absolute;
    background: rgba(16, 185, 129, 0.1); /* Light green for visual elements */
    border-radius: 50%;
    opacity: 0.6;
    animation: floatGreen 12s ease-in-out infinite;
}

.solution-section::before {
    width: 180px;
    height: 180px;
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.solution-section::after {
    width: 220px;
    height: 220px;
    bottom: 20%;
    right: -12%;
    animation-delay: 6s;
}

@keyframes floatGreen {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

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

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    position: relative;
}

.text-green {
    color: green;
}

.text-blue {
    color: blue;
}

.text-white {
    color: white;
}

.solution-title::after {
    content: '💡';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.solution-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e293b 30%, #000000 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

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

.benefits-section .section-title,
.benefits-section .benefit-item h3,
.benefits-section .benefit-item p {
    color: white;
}

.benefits-section .benefit-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.text-white {
    color: white !important;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* How It Works Gallery Section */
.how-it-works-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.how-it-works-section .gallery-grid {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Resources Section Styles */
.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.resource-icon {
    transition: transform 0.3s ease;
}

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

.resources-grid {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 25px !important;
    }
}

/* Background específico para seção de benefícios com gradiente azul escuro e preto */
.benefits-section.hero-background {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

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

.benefits-section.hero-background .section-title {
    color: white;
}

.benefits-section.hero-background .text-white {
    color: white;
}

.benefits-section.hero-background .text-blue {
    color: #3b82f6;
}

/* Background específico para seção de benefícios em fotos-para-cardapio */
body.fotos-cardapio .benefits-section.hero-background {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

body.fotos-cardapio .benefits-section.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

body.fotos-cardapio .benefits-section.hero-background .container {
    position: relative;
    z-index: 2;
}

body.fotos-cardapio .benefits-section.hero-background .section-title {
    color: white;
}

body.fotos-cardapio .benefits-section.hero-background .text-white {
    color: white;
}

body.fotos-cardapio .benefits-section.hero-background .text-blue {
    color: #3b82f6;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Features Section - Light Background */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    animation: lightPulse 6s ease-in-out infinite alternate;
}

@keyframes lightPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

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

.features-section .section-title {
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.feature-item p {
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* Responsive adjustments for features */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.8rem;
        margin-top: 2.5rem;
    }
    
    .feature-item {
        padding: 2.5rem 1.8rem;
    }
    
    .features-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .features-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        padding: 1.8rem 1.2rem;
        border-radius: 16px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .features-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
        line-height: 1.3;
    }
    
    .feature-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 360px) {
    .features-section {
        padding: 2rem 0;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .features-section .section-title {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
}

/* Service Portfolio */
.service-portfolio {
    padding: 5rem 0;
    background: #f8fafc;
}

.portfolio-gallery {
    display: grid;
    gap: 4rem;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Responsividade melhorada para portfolio */
@media (max-width: 768px) {
    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .showcase-item {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .portfolio-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Fotos para Cardápio - Card único centralizado */
body.fotos-cardapio .portfolio-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.fotos-cardapio .showcase-item {
    max-width: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: none;
}

body.fotos-cardapio .showcase-item:hover {
    transform: none;
    box-shadow: none;
}

body.fotos-cardapio .showcase-item img,
body.fotos-cardapio .showcase-item video {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: none;
}

body.fotos-cardapio .showcase-item:hover img,
body.fotos-cardapio .showcase-item:hover video {
    transform: none;
}

body.fotos-cardapio .showcase-overlay {
    display: none;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    /* Remove hover transform */
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Keep original shadow */
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    /* Remove image hover scale */
    transform: none;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay */
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1; /* Always visible */
    transition: background 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    /* Slightly darker on hover */
    background: rgba(0, 0, 0, 0.7);
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.showcase-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.showcase-link:hover {
    color: #60a5fa;
}

/* Video Demo */
.video-demo {
    text-align: center;
}

.video-demo h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    border-radius: 15px;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb, #1e40af);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    border-left: 4px solid #3b82f6;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid #1e40af;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background: #f8f9fa;
    color: #333;
    position: relative;
    overflow: hidden;
}

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

.demo-section .section-title {
    color: #2563eb;
}

.demo-section .demo-subtitle {
    color: #4a5568;
}

/* Service CTA */
.service-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #000000 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-guarantee i {
    color: #1e40af;
    font-size: 1.2rem;
}

/* Ideal para diversos segmentos Section */
.ideal-segmentos-section {
    padding: 5rem 0;
    background: white;
    color: #1e293b;
}

.ideal-segmentos-section .section-title {
    color: #3b82f6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.segmento-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.segmento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.segmento-item:hover::before {
    left: 100%;
}

.segmento-item:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.segmento-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.segmento-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3b82f6;
    position: relative;
    z-index: 2;
}

.segmento-item p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}



/* Related Services */
.related-services {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.related-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.related-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #0f172a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.related-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.related-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #2563eb;
}

.service-cta .section-title {
    color: white;
}
/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-hero-content {
        padding: 80px 15px;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 2rem;
    }

    .service-hero-content {
        padding: 60px 10px;
    }
}