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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #37474f 0%, #546e7a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(55, 71, 79, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(55, 71, 79, 0.4);
}

.btn-outline {
    background: transparent;
    color: #00bcd4;
    border: 2px solid #00bcd4;
}

.btn-outline:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #00bcd4;
}

.loja-link {
    color: #ff6b35;
}

.catalogo-link {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300bcd4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title-line1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-title-line2 {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #b0bec5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.2) 100%);
    border: 1px solid #4caf50;
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: #4caf50;
}

.hero-badge i {
    font-size: 1.2rem;
}

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

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: #b0bec5;
    font-size: 1.2rem;
}

/* Planos Section */
.planos {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.plano-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.plano-link:hover {
    text-decoration: none;
    color: inherit;
}

.plano-card {
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.plano-card:hover::before {
    opacity: 0.1;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: #00bcd4;
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

.plano-popular {
    border-color: #00bcd4;
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}

.plano-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: max-content;
}

.plano-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.plano-title {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.4rem;
}

.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    color: #00bcd4;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00bcd4;
}

.period {
    font-size: 0.9rem;
    color: #b0bec5;
}

.plano-economy {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.plano-features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.plano-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features i {
    color: #00bcd4;
    font-size: 1.1rem;
}

/* Vantagens Section */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vantagem-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vantagem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.vantagem-title {
    margin-bottom: 15px;
    color: #ffffff;
}

.vantagem-description {
    color: #b0bec5;
}

/* Como Funciona Section */
.como-funciona {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.como-funciona-content {
    margin-top: 60px;
}

.como-funciona-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 200px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bcd4 0%, #0288d1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-description {
    color: #b0bec5;
    font-size: 0.95rem;
    line-height: 1.4;
}

.app-showcase {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    border-radius: 20px;
    border: 2px solid #00bcd4;
}

.app-title {
    margin-bottom: 15px;
    color: #00bcd4;
}

.app-description {
    margin-bottom: 30px;
    color: #b0bec5;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    padding: 100px 0;
    overflow: hidden;
}

.app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.app-info {
    text-align: left;
}

.app-info .section-title {
    margin-bottom: 20px;
    color: #00bcd4;
    font-size: 2.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.app-description {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #b0bec5;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item i {
    color: #00bcd4;
    margin-right: 12px;
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 1.1rem;
}

.app-download-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-download-button .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-bottom: 10px;
}

.app-name {
    color: #b0bec5;
    font-size: 0.9rem;
    margin: 0;
}

.app-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 300px;
    height: auto;
    animation: phoneFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 188, 212, 0.3));
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Depoimentos Section */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.depoimento-item {
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.depoimento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

.depoimento-stars {
    margin-bottom: 20px;
}

.depoimento-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #b0bec5;
    font-size: 1rem;
}

.depoimento-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.depoimento-author span {
    color: #00bcd4;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px 0 20px;
}

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

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

.footer-description {
    color: #b0bec5;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #00bcd4;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00bcd4;
}

.loja-link {
    color: #ff6b35;
}

.catalogo-link {
    color: #00bcd4;
}

.footer-contact p {
    color: #b0b0b0;
    gap: 10px;
}

.footer-contact i {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #37474f;
    color: #b0bec5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive Design */@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title-line1 {
        font-size: 2.5rem;
    }
    
    .hero-title-line2 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .app-info .section-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .app-download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-info {
        text-align: center;
    }
    
    .app-download-button {
        align-items: center;
    }
    
    .phone-image {
        max-width: 250px;
    }
    
    .como-funciona-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step {
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .plano-card {
        padding: 20px 15px;
        min-height: 350px;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .como-funciona-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-title-line1 {
        font-size: 2rem;
    }
    
    .hero-title-line2 {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .como-funciona-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        min-height: 160px;
        padding: 20px 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .plano-card {
        padding: 25px 20px;
        min-height: 380px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

