/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: #667eea;
}

/* Botão Calendly */
.calendly-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.calendly-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4) !important;
    color: white !important;
}

.calendly-btn::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;
}

.calendly-btn:hover::before {
    left: 100%;
}

/* Animação pulsante para o botão Calendly */
@keyframes pulse-calendly {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(0, 210, 255, 0.6), 0 0 0 10px rgba(0, 210, 255, 0.1);
    }
}

.calendly-btn {
    animation: pulse-calendly 2s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    margin-bottom: 0;
    transform: none !important;
}

.hero-content {
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    white-space: nowrap;
}

.stat-number sup {
    font-size: 0.6em;
    vertical-align: super;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 500px;
}

.demo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
}

.demo-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.demo-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 40px 0 80px 0;
    background: #f8fafc;
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border: 2px solid #ff6b6b;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position: relative;
}

.service-card.featured::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ff6b6b;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Agendamento Section */
.agendamento-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.agendamento-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.agendamento-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.agendamento-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    display: inline-block;
    animation: pulse-calendly 2s infinite;
}

.agendamento-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4);
    color: white;
}

.agendamento-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agendamento-btn-secondary:hover {
    background: white;
    color: #667eea;
}

.agendamento-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Botão Calendly no Hero */
.calendly-hero-btn {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3) !important;
    display: inline-block !important;
    animation: pulse-calendly 2s infinite !important;
}

.calendly-hero-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4) !important;
    color: white !important;
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.urgency-text {
    font-size: 1.3rem;
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Quote Section */
.quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.quote-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.2);
}

.quote-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.quote-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    font-weight: 700;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-primary.large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.guarantee {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Forçar exibição do botão Calendly em mobile */
    .nav-links {
        display: flex !important;
        visibility: visible !important;
        width: auto !important;
    }
    
    .nav-links .calendly-btn {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .automation-demo {
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .demo-card {
        padding: 1rem;
    }
    
    .demo-card h3 {
        font-size: 1rem;
    }
    
    .demo-card p {
        font-size: 0.8rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: flex !important;
        gap: 1rem;
        align-items: center;
        justify-content: flex-end;
    }
    
    .nav-links a:not(.calendly-btn) {
        display: none !important;
    }
    
    /* Botão Calendly integrado no header mobile */
    .nav-links .calendly-btn {
        display: inline-block !important;
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
        box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3) !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 80px;
    }
    
    .quote-form {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Responsividade da seção de agendamento */
    .agendamento-content h2 {
        font-size: 2rem;
    }
    
    .agendamento-content p {
        font-size: 1.1rem;
    }
    
    .agendamento-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .agendamento-btn,
    .agendamento-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .agendamento-benefits {
        gap: 1rem;
    }
    
    .benefit {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .quote-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Ajustar botão Calendly para telas muito pequenas */
    .nav-links .calendly-btn {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    /* Ajustes para seção de agendamento em telas muito pequenas */
    .agendamento-content h2 {
        font-size: 1.8rem;
    }
    
    .agendamento-content p {
        font-size: 1rem;
    }
    
    .agendamento-btn,
    .agendamento-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefit {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .automation-demo {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .demo-card {
        padding: 1.2rem;
    }
    
    .demo-card h3 {
        font-size: 1.1rem;
    }
    
    .demo-card p {
        font-size: 0.9rem;
    }
}

/* FORÇA EXIBIÇÃO DO BOTÃO CALENDLY EM MOBILE - PRIORIDADE MÁXIMA */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        justify-content: flex-end !important;
        width: auto !important;
        height: auto !important;
    }
    
    .nav-links a:not(.calendly-btn) {
        display: none !important;
    }
    
    .nav-links .calendly-btn {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        z-index: 999 !important;
        margin: 0 !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}
