/* Estilos para o botão de alternância mobile/desktop */
.view-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #171836;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.view-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.view-toggle i {
    font-size: 16px;
}

/* Estilos para visualização mobile */
.mobile-view {
    max-width: 480px !important;
    margin: 0 auto;
    border-left: 10px solid #171836;
    border-right: 10px solid #171836;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
    position: relative;
}

.mobile-view:before, .mobile-view:after {
    content: '';
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 40px;
    background-color: #171836;
    z-index: 1000;
}

.mobile-view:before {
    top: 0;
    border-radius: 0 0 20px 20px;
}

.mobile-view:after {
    bottom: 0;
    border-radius: 20px 20px 0 0;
}

/* Global Styles */
:root {
    --primary-color: #171836; /* Dark navy blue from image */
    --secondary-color: #1e1f45; /* Secondary dark navy blue */
    --accent-color: #FF6B00; /* Orange accent from Piloto.live */
    --dark-color: #171836;
    --light-color: #F5F9FC;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --gray-color: #F0F0F0;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--dark-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: #25D366;
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #20c35e;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background-color: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header .container {
    padding: 10px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    margin-right: 15px;
    transition: var(--transition);
    object-fit: contain;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(245, 249, 252, 1) 0%, rgba(23, 24, 54, 0.1) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Estilos para o contêiner de celular */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    perspective: 1000px;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.05),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Botões laterais do celular */
.phone-frame:after {
    content: "";
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px 0 0 3px;
}

/* Entalhe superior do celular (notch) */
.phone-frame:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background-color: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Câmera no notch */
.phone-frame:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 110px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #333 30%, #1a1a1a 70%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.5);
}

.phone-screen {
    width: 284px;
    height: 584px;
    background-color: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Brilho na tela */
.phone-screen:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-video .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.hero-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Inspiration Section */
.inspiration {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.inspiration-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inspiration-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.highlight-text {
    font-size: 1.4rem !important;
    font-weight: 600;
    margin-top: 30px !important;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.benefit-card {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Benefits Showcase Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f9fc 0%, rgba(23, 24, 54, 0.1) 100%);
}

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

.benefit-showcase-item {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.benefit-showcase-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-color);
}

.benefit-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    background: rgba(23, 24, 54, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-showcase-item:hover .benefit-icon-large {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(23, 24, 54, 0.3);
}

.benefit-showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.benefit-showcase-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.benefit-showcase-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.highlight-big {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
    background: linear-gradient(135deg, #ffffff 0%, rgba(23, 24, 54, 0.05) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text:before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-role {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-chat {
    text-align: center;
}

.testimonial-chat h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.chat-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.chat-images img {
    width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.chat-images img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--gray-color);
    background: linear-gradient(135deg, #f5f9fc 0%, rgba(23, 24, 54, 0.1) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #171836;
    color: var(--light-text);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 70px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-links h3 i, .footer-contact h3 i {
    margin-right: 8px;
    color: var(--light-text);
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a i {
    margin-right: 8px;
    font-size: 0.9em;
    color: var(--light-text);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: white !important;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: white;
}

.footer-contact p a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-social-link {
    padding: 5px 0;
    margin-bottom: 5px;
    display: inline-flex !important;
    align-items: center;
}

.footer-social-link i {
    font-size: 1.2em;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: white !important;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-contact p a:hover {
    color: var(--light-text);
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-contact p a i.fa-instagram {
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-size: 1.1rem;
}

.whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20c35e;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .benefits-showcase {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        width: 100%;
        height: 200px;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .inspiration-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .chat-images img {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
