/* About Page Styles */

.about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #34343f 0%, #2a2a35 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding-top: 80px;
}

.hero-text {
    max-width: 900px;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(251, 61, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #ede7e7;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    margin-bottom: 1rem;
}

.title-line:first-child {
    font-size: 0.6em;
    font-weight: 400;
    color: #ede7e7;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.title-line.highlight {
    color: #fb3d28;
    position: relative;
    font-size: 1.2em;
    background: linear-gradient(135deg, #fb3d28 0%, #ff7851 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 61, 40, 0.3);
    margin-top: -20px;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fb3d28 0%, #ff7851 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(251, 61, 40, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ede7e7;
    opacity: 0.85;
    margin-top: 3rem;
    max-width: 600px;
    font-weight: 400;
    text-align: center;
}

.description-line {
    margin: 0;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLine 0.8s ease-out forwards;
}

.description-line:nth-child(1) {
    animation-delay: 0.5s;
}

.description-line:nth-child(2) {
    animation-delay: 0.8s;
}

.description-line:nth-child(3) {
    animation-delay: 1.1s;
}

@keyframes fadeInUpLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats styles removed */

/* Background Grid */
.background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(#ede7e7 1px, transparent 1px),
        linear-gradient(90deg, #ede7e7 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

/* Animated Circles */
.animated-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    /* Removida animação CSS para evitar conflito com JavaScript */
    /* animation: floatAndRotate 15s linear infinite; */
}

.floating-circle.circle-1 {
    width: 60px;
    height: 60px;
    background: #fb3d28;
    top: 10%;
    left: 15%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.floating-circle.circle-2 {
    width: 40px;
    height: 40px;
    background: #ff7851;
    top: 20%;
    right: 20%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.floating-circle.circle-3 {
    width: 80px;
    height: 80px;
    background: #fb3d28;
    bottom: 25%;
    left: 10%;
    animation-duration: 14s;
    animation-delay: 6s;
}

.floating-circle.circle-4 {
    width: 35px;
    height: 35px;
    background: #ff7851;
    top: 60%;
    right: 15%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.floating-circle.circle-5 {
    width: 50px;
    height: 50px;
    background: #fb3d28;
    bottom: 15%;
    right: 25%;
    animation-duration: 16s;
    animation-delay: 8s;
}

.floating-circle.circle-6 {
    width: 25px;
    height: 25px;
    background: #ff7851;
    top: 40%;
    left: 8%;
    animation-duration: 22s;
    animation-delay: 5s;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #ff7851;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #fb3d28;
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #ede7e7;
    top: 20%;
    left: 20%;
    animation: rotate 25s linear infinite;
}

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

@keyframes glow {
    from {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes floatAndRotate {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.05;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.1;
    }
}

/* Float and pulse animations removed */

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 90vh;
    }
    
    .hero-content {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .title-line:first-child {
        font-size: 0.5em;
        letter-spacing: 3px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .floating-circle {
        opacity: 0.05;
    }
    
    .background-grid {
        opacity: 0.02;
        background-size: 40px 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding-top: 80px;
        min-height: 70vh;
        justify-content: center;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    .title-line:first-child {
        font-size: 0.6em;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
    }
    
    .title-line.highlight::after {
        width: 90px;
        bottom: -18px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-top: 2.5rem;
        max-width: 500px;
        line-height: 1.7;
    }
    
    .description-line {
        animation-duration: 0.6s;
    }
    
    .description-line:nth-child(1) {
        animation-delay: 0.4s;
    }
    
    .description-line:nth-child(2) {
        animation-delay: 0.7s;
    }
    
    .description-line:nth-child(3) {
        animation-delay: 1s;
    }
    
    /* Responsive styles cleaned up */
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 65vh;
    }
    
    .hero-content {
        padding-top: 60px;
        min-height: 65vh;
        justify-content: center;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 0;
        margin-bottom: 0.8rem;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .title-line:first-child {
        font-size: 0.5em;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .title-line.highlight::after {
        width: 70px;
        bottom: -15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 2rem;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .description-line {
        animation-duration: 0.5s;
    }
    
    .description-line:nth-child(1) {
        animation-delay: 0.3s;
    }
    
    .description-line:nth-child(2) {
        animation-delay: 0.6s;
    }
    
    .description-line:nth-child(3) {
        animation-delay: 0.9s;
    }
    
    .floating-circle {
        opacity: 0.03;
    }
    
    .floating-circle.circle-3,
    .floating-circle.circle-5 {
        display: none;
    }
    
    .background-grid {
        opacity: 0.015;
        background-size: 30px 30px;
    }
    
    /* Mobile stats styles removed */
} 

/* Seção Detalhada de Serviços */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards de Serviços Detalhados */
.service-detailed-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.service-content {
    display: block;
    width: 100%;
}

/* Header do Serviço */
.service-header {
    margin-bottom: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-tagline {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.5;
}

/* Descrição do Serviço */
.service-description {
    margin-bottom: 40px;
}

.service-description p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Grid de Features */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-category h4 i {
    color: #8b5cf6;
    font-size: 1rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category li {
    padding: 8px 0;
    color: #6b7280;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.feature-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Processo de Trabalho */
.service-process {
    margin-top: 40px;
}

.service-process h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Exemplos de Automação */
.automation-examples {
    margin-top: 40px;
}

.automation-examples h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.example {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.example:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.example i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 16px;
}

.example h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
}

.example p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Capacidades de IA */
.ai-capabilities {
    margin-top: 40px;
}

.ai-capabilities h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
}

.capabilities-list {
    display: grid;
    gap: 20px;
}

.capability {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.capability:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.capability-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon i {
    font-size: 1.2rem;
    color: white;
}

.capability-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.capability-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}



/* CTA Section */
.services-cta-section {
    margin-top: 60px;
    padding: 60px;
    background: linear-gradient(135deg, #8b5cf6, #f97316);
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.services-cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons:has(.cta-button:only-child) {
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #f97316;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .services-detailed {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detailed-card {
        padding: 40px 24px;
        margin-bottom: 80px;
    }
    
    .service-content {
        display: block;
        width: 100%;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    

    
    .services-cta-section {
        padding: 40px 24px;
        margin-top: 40px;
    }
    
    .services-cta-content h3 {
        font-size: 1.8rem;
    }
    
    .services-cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.9rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    

} 

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135deg, #1a1a25 0%, #252540 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 61, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 112, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.pricing-section .section-title span {
    color: var(--red);
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Categories */
.pricing-category-card {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(251, 61, 40, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.pricing-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 61, 40, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.pricing-category-card > * {
    position: relative;
    z-index: 2;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 20px 40px rgba(251, 61, 40, 0.2);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Strips */
.pricing-strips {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-strip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

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

.pricing-strip:hover::before {
    left: 100%;
}

.pricing-strip:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 61, 40, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}



.strip-content {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.strip-header {
    min-width: 300px;
    position: relative;
}

.strip-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.strip-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.strip-description {
    flex: 1;
}

.strip-description p {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.strip-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.strip-features li {
    display: flex;
    align-items: center;
    color: var(--light-gray);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.4;
}

.strip-features li i {
    color: var(--red);
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Pricing CTA */
.pricing-cta {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
}

.pricing-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.pricing-cta-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.pricing-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-cta-buttons:has(.cta-button:only-child) {
    justify-content: center;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.6;
    margin-top: 20px;
}

.pricing-note i {
    margin-right: 8px;
    color: var(--red);
}

/* Monthly Costs Card */
.monthly-costs-card {
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(255, 112, 67, 0.08) 0%, rgba(251, 61, 40, 0.08) 100%);
    border: 2px solid rgba(251, 61, 40, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.monthly-costs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(251, 61, 40, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.monthly-costs-card > * {
    position: relative;
    z-index: 2;
}

.monthly-costs-header {
    text-align: center;
    margin-bottom: 40px;
}

.monthly-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 20px 40px rgba(251, 61, 40, 0.25);
}

.monthly-icon i {
    font-size: 2.2rem;
    color: white;
}

.monthly-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.monthly-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.monthly-costs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cost-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cost-category:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 61, 40, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cost-header {
    margin-bottom: 15px;
}

.cost-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-title i {
    color: var(--red);
    font-size: 1.1rem;
}

.cost-description {
    margin-bottom: 20px;
}

.cost-description p {
    font-size: 0.95rem;
    color: var(--light-gray);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.cost-details {
    margin-top: 0;
}

.cost-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-features li {
    display: flex;
    align-items: center;
    color: var(--light-gray);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cost-features li i {
    color: var(--red);
    margin-right: 10px;
    font-size: 0.8rem;
    min-width: 16px;
}

.cost-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-range {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.price-description {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.7;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.cost-info {
    margin-top: 20px;
    background: rgba(251, 61, 40, 0.08);
    border: 1px solid rgba(251, 61, 40, 0.2);
    border-radius: 10px;
    padding: 15px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-content > i {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 18px;
}

.info-content p {
    font-size: 0.85rem;
    color: var(--light-gray);
    opacity: 0.85;
    line-height: 1.4;
    margin: 0;
}

.monthly-costs-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 61, 40, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-content > i {
    color: var(--red);
    font-size: 1.5rem;
    margin-top: 3px;
    min-width: 24px;
}

.note-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.note-text p {
    font-size: 0.95rem;
    color: var(--light-gray);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.note-text strong {
    color: var(--red);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .strip-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .strip-header {
        min-width: auto;
    }

    .strip-features {
        grid-template-columns: 1fr;
    }

    .monthly-costs-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

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

    .pricing-container {
        padding: 0 1rem;
    }

    .pricing-section .section-title {
        font-size: 2.5rem;
    }

    .pricing-category-card {
        padding: 30px 20px;
        margin-bottom: 80px;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .strip-content {
        padding: 25px 15px;
    }

    .strip-title {
        font-size: 1.5rem;
    }

    .strip-price {
        font-size: 2rem;
    }

    .pricing-cta {
        padding: 40px 20px;
    }

    .pricing-cta-content h3 {
        font-size: 2rem;
    }

    .pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .monthly-costs-card {
        padding: 30px 20px;
        margin-bottom: 80px;
    }

    .monthly-costs-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .monthly-title {
        font-size: 2rem;
    }

    .cost-category {
        padding: 20px;
    }

    .price-range {
        font-size: 1.3rem;
    }

    .cost-info {
        margin-top: 15px;
        padding: 12px;
    }

    .info-content {
        gap: 10px;
    }
}

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

    .pricing-category-card {
        padding: 20px 15px;
        margin-bottom: 70px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .category-header {
        padding: 20px 10px;
        margin-bottom: 25px;
    }

    .strip-content {
        padding: 20px 10px;
    }

    .strip-title {
        font-size: 1.3rem;
    }

    .strip-price {
        font-size: 1.8rem;
    }

    .monthly-costs-card {
        padding: 20px 15px;
        margin-bottom: 70px;
    }

    .monthly-title {
        font-size: 1.5rem;
    }

    .monthly-icon {
        width: 60px;
        height: 60px;
    }

    .monthly-icon i {
        font-size: 1.8rem;
    }

    .cost-category {
        padding: 15px;
    }

    .cost-title {
        font-size: 1.1rem;
    }

    .cost-range {
        font-size: 1.5rem;
    }

    .monthly-costs-note {
        padding: 20px;
    }

    .note-content {
        gap: 10px;
    }

    .price-range {
        font-size: 1.2rem;
    }

    .cost-pricing {
        margin-top: 20px;
        padding-top: 15px;
    }

    .cost-info {
        margin-top: 12px;
        padding: 10px;
    }

    .info-content p {
        font-size: 0.8rem;
    }

}

/* Category Info Cards */
.category-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 61, 40, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.category-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 61, 40, 0.1) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-info-card:hover::before {
    opacity: 1;
}

.category-info-card:hover {
    border-color: rgba(251, 61, 40, 0.4);
    transform: translateY(-2px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.info-header i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.info-header h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.category-info-card .info-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-info-card .info-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.category-info-card .info-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.category-info-card .pricing-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(251, 61, 40, 0.1);
    border: 1px solid rgba(251, 61, 40, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-info-card .pricing-note i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.category-info-card .info-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-info-card .info-link:hover {
    color: #ff6b4a;
    border-bottom-color: var(--accent-color);
}

/* Responsive adjustments for info cards */
@media (max-width: 768px) {
    .category-info-card {
        padding: 18px;
        margin-top: 20px;
    }

    .info-header h4 {
        font-size: 1rem;
    }

    .category-info-card .info-content p {
        font-size: 0.9rem;
    }

    .category-info-card .pricing-note {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .category-info-card {
        padding: 16px;
        margin-top: 16px;
    }

    .info-header {
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .info-header h4 {
        font-size: 0.95rem;
    }

    .category-info-card .info-content p {
        font-size: 0.85rem;
    }
}

/* ============================================================================
   SERVICE PRICING LINKS
   ============================================================================ */

.service-pricing-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--red) 0%, #e6371e 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(251, 61, 40, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    /* Estado inicial para animação */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

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

.pricing-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 61, 40, 0.3);
    color: white !important;
    text-decoration: none;
}

/* Garantir que o texto apareça */
.pricing-link-button,
.pricing-link-button:visited,
.pricing-link-button:focus,
.pricing-link-button:active {
    color: white !important;
    text-decoration: none !important;
}

.pricing-link-button:hover::before {
    left: 100%;
}

.pricing-link-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.pricing-link-button:hover i {
    transform: scale(1.1);
}

/* Responsive para os botões de preços */
@media (max-width: 768px) {
    .pricing-link-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .service-pricing-link {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* ============================================================================
   PRICING SERVICE LINKS (dos preços para os serviços)
   ============================================================================ */

.pricing-service-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    /* Estado inicial para animação */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

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

.service-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3);
    color: white !important;
    text-decoration: none;
}

.service-link-button:hover::before {
    left: 100%;
}

.service-link-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-link-button:hover i {
    transform: scale(1.1);
}

/* Garantir que o texto apareça */
.service-link-button,
.service-link-button:visited,
.service-link-button:focus,
.service-link-button:active {
    color: white !important;
    text-decoration: none !important;
}

/* Responsive para os botões de serviços */
@media (max-width: 768px) {
    .service-link-button,
    .pricing-link-button {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        min-height: auto;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .service-link-button,
    .pricing-link-button {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
}
    
    .pricing-service-link {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

/* Desktop styles - apenas para telas maiores que 1024px */
@media (min-width: 1025px) {
    .hero-content {
        transform: translateY(-10vh);
    }
}
