/* Tema global e fontes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0e17;
    color: #e4e6eb;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Variáveis CSS */
:root {
    --primary-color: #6c5ce7;
    --primary-hover: #5649c0;
    --secondary-color: #2d3748;
    --accent-color: #00d2d3;
    --text-color: #e4e6eb;
    --text-muted: #a0aec0;
    --bg-primary: #0a0e17;
    --bg-secondary: #1a202c;
    --bg-card: #2d3748;
    --border-color: #4a5568;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --success-color: #00b894;
    --error-color: #ff6b6b;
    --warning-color: #fdcb6e;
    --info-color: #0984e3;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00a0a0;
}

/* Botões */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    background-color: var(--bg-secondary);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

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

.login-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 20px;
    transition: all 0.3s;
}

.login-btn:hover, .login-btn.active {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-img {
    max-width: 200px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

/* Section */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-text {
    color: var(--text-muted);
}

/* Why Choose Section */
.why-choose {
    background-color: var(--bg-secondary);
    padding: 100px 0;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.why-choose-text {
    flex: 1;
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-description {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-choose-image {
    flex: 1;
    text-align: center;
}

.why-choose-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-muted);
}

/* Features */
.features {
    padding: 50px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
}

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

.feature-text {
    flex: 1;
    padding-right: 50px;
}

.feature-item:nth-child(even) .feature-text {
    padding-right: 0;
    padding-left: 50px;
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
}

/* FAQ */
.faq {
    padding: 50px 0;
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Contact */
.contact {
    padding: 50px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.contact-info-text p {
    margin: 0;
    color: var(--text-muted);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Login Page */
.login-page {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
}

.login-container {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo img {
    height: 80px;
}

.login-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--accent-color);
}

.login-btn-full {
    width: 100%;
    margin-bottom: 20px;
}

.login-footer {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 30px;
}

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

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 15px;
}

.footer-link {
    color: var(--text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-link i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

.footer-contact-text {
    color: var(--text-muted);
}

.footer-bottom {
    grid-column: span 4;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Alert Messages */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-success {
    background-color: rgba(0, 184, 148, 0.1);
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--error-color);
    color: var(--error-color);
}

.alert-warning {
    background-color: rgba(253, 203, 110, 0.1);
    border-left: 4px solid var(--warning-color);
    color: var(--warning-color);
}

.alert-info {
    background-color: rgba(9, 132, 227, 0.1);
    border-left: 4px solid var(--info-color);
    color: var(--info-color);
}

/* Error Message */
.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-control.error {
    border-color: var(--error-color);
}

    /* Estilo aprimorado para o botão flutuante do WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: all 0.3s ease;
      animation: whatsappEntrance 0.5s ease-in-out;
    }

    .whatsapp-float:hover {
      background-color: #128c7e;
      transform: scale(1.1);
      box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    }

    /* Animação de pulso para chamar atenção */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Animação de entrada */
    @keyframes whatsappEntrance {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Aplicar animação de pulso */
    .whatsapp-float.pulse {
      animation: pulse 2s infinite;
    }