/* Estilos Globais */
:root {
    --primary-color: #F26E21; /* Laranja do logo AmberCRM */
    --secondary-color: #6A1B9A; /* Roxo das imagens do app */
    --accent-color: #4285F4; /* Azul para CTAs */
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

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

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #3367d6;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
}

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

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

.nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9C27B0 100%);
    color: var(--white);
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero-content h2 {
    text-align: left;
    color: var(--white);
    opacity: 0.9;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Diferencial Section */
.diferencial {
    background-color: var(--light-color);
}

.diferencial-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.diferencial-text {
    flex: 1;
}

.diferencial-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.diferencial-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.diferencial-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Funcionalidades Section */
.funcionalidades {
    background-color: var(--white);
}

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

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(106, 27, 154, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

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

.card p {
    color: var(--gray-color);
}

/* App Mobile Section */
.app-mobile {
    background-color: var(--light-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-feature.reverse {
    flex-direction: row-reverse;
}

.app-feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-feature-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.app-feature-text {
    flex: 1;
}

.app-feature-text h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.app-feature-text p {
    color: var(--gray-color);
}

.app-platforms {
    text-align: center;
    margin-top: 40px;
}

.app-platforms p {
    margin-bottom: 20px;
    font-weight: 500;
}

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

.app-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.app-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Planos Section */
.planos {
    background-color: var(--white);
    padding: 40px 0;
}

.planos-grid {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}

.plano {
    flex: 1;
    margin: 0 10px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.plano:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plano.destaque {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plano.destaque:hover {
    transform: scale(1.05) translateY(-5px);
}


.plano-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F26E21;
    color: #fff;
    padding: 5px 16px;
    font-size: 1rem;
    font-weight: 700;
    border-bottom-left-radius: var(--border-radius);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px #0001;
}

.plano-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.plano-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plano-preco .valor {
    font-size: 2rem;
    font-weight: 700;
}

.plano-preco .periodo {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 5px;
}

.plano-features {
    padding: 20px;
}

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

.plano-features ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plano-features ul li i {
    margin-top: 4px;
    font-size: 0.9rem;
}

.plano-features ul li i.fa-check {
    color: #28a745;
}

.plano-features ul li i.fa-times {
    color: #dc3545;
}

.plano-cta {
    padding: 0 20px 20px;
    text-align: center;
}

.planos-adicionais {
    margin-top: 50px;
}

.planos-adicionais h3 {
    text-align: center;
    margin-bottom: 30px;
}

.adicionais-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.adicionais-table th,
.adicionais-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.adicionais-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.adicionais-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF9800 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
}

.cta-final p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

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

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h2 {
        text-align: center;
    }
    
    .diferencial-content {
        flex-direction: column;
    }
    
    .diferencial-text {
        order: 2;
    }
    
    .diferencial-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .app-feature,
    .app-feature.reverse {
        flex-direction: column;
    }
    
    .app-feature-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 5px 10px;
    }
    
    .cta-secondary {
        margin-top: 15px;
    }
    
    .plano.destaque {
        transform: scale(1);
    }
    
    .plano.destaque:hover {
        transform: translateY(-5px);
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Adicionais Section - Visual fiel ao modelo */
.adicionais-section {
  background: #eaf4ff;
  padding: 60px 0 40px 0;
  text-align: center;
}
.adicionais-section h2 {
  font-size: 2.6em;
  font-weight: 800;
  margin-bottom: 48px;
  color: #232272;
  text-align: center;
  letter-spacing: -1px;
}
.adicionais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}
.adicional-card {
  background: #fff;
  border: 2px solid #b3d1fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #3b82f610;
  padding: 36px 32px 28px 32px;
  width: 100%;
  max-width: 410px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
}
.adicional-card:hover {
  box-shadow: 0 8px 32px 0 #3b82f620;
  border: 2px solid #3b82f6;
}
.adicional-icone {
  width: 64px;
  height: 64px;
  background: #f6fbff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 2px solid #b3d1fa;
}
.adicional-icone svg {
  width: 36px;
  height: 36px;
  display: block;
}
.adicional-title {
  font-weight: 800;
  font-size: 1.25em;
  margin-bottom: 10px;
  color: #232272;
  text-align: center;
}
.adicional-preco {
  color: #232272;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.preco-destaque {
  color: #232272;
  font-weight: 800;
  font-size: 1.2em;
}
.preco-mes {
  color: #232272;
  font-weight: 400;
  font-size: 0.9em;
  margin-left: 2px;
}
.adicional-divider {
  border: none;
  border-top: 1.5px dashed #b3d1fa;
  width: 100%;
  margin: 16px 0 18px 0;
}
.adicional-desc {
  color: #232272;
  font-size: 1.08em;
  margin-top: 0;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .adicionais-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .adicionais-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .adicional-card {
    max-width: 98%;
    min-height: 0;
  }
}

/* Ajuste responsivo */
@media (max-width: 1200px) {
    .planos-grid {
        flex-wrap: wrap;
    }
    .plano {
        width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .plano {
        width: 100%;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .plano-header h3 {
        font-size: 1.3rem;
    }
    
    .plano-preco .valor {
        font-size: 1.8rem;
    }
}
