   
/* Base Styles and Variables */
:root {
    --primary-color: #154854;
    --primary-dark: #0e3640;
  
    /*--primary-color: #2563eb;
    --primary-dark: #1d4ed8;*/
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #f9fafb;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --bg-dark: #111827;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}








/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.accordion-header {
    padding: 20px;
    background-color: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

    .accordion-header h3 {
        margin: 0;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .accordion-header h3 i {
            color: var(--third-color);
        }

.accordion-icon i {
    transition: var(--transition);
}

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

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

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


modal-trigger {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: var(--third-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.modal-trigger:hover {
    background-color: var(--primary-color);
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
    padding: 50px 0;
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 1000px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

    .modal-content.success {
        text-align: center;
        max-width: 500px;
    }

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: var(--transition);
}

    .modal-close:hover {
        color: var(--primary-color);
    }

.modal-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

    .modal-content h2 i {
        color: var(--secondary-color);
    }

.modal-content p {
    margin-bottom: 15px;
}

.modal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

    .modal-content ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

        .modal-content ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

.modal-close-btn {
    margin-top: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 60px;
  color: var(--text-white);
}

h2 {
  font-size: 42px;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

h3 {
  font-size: 28px;
}

p {
  font-size: 22px;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

ul {
  list-style: none;
}

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

section {
  padding: 80px 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-contato {
  background-color: var(--primary-color);
  color: var(--text-white) !important;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-contato:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Header */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary-color);
}

.logo h2:after {
  display: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  padding: 5px 10px;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h2 {
  font-size: 36px;
  color: var(--accent-color);
  margin-top: -20px;
  margin-bottom: 30px;
}

.hero h2:after {
  display: none;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

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

.image-placeholder {
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Destaque Section */
.destaque {
  background-color: var(--bg-white);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.destaque .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1;
  text-align: center;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.card p {
  font-size: 18px;
  color: var(--text-light);
}

/* Serviços Section */
.servicos {
  background-color: var(--bg-light);
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.servico-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.servico-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.servico-item .image-placeholder {
  height: 200px;
  width: 100%;
  max-width: 100%;
}

.servico-item .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servico-item h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.servico-item p {
  padding: 0 20px 20px;
  font-size: 18px;
  color: var(--text-light);
}

/* Vantagens Section */
.vantagens {
  background-color: var(--bg-white);
}

.vantagens .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.vantagens-content {
  flex: 1;
}

.vantagens-image {
  flex: 1;
}

.vantagens-lista li {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.check {
    background-color: var(--secondary-color);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.check1 {
    background-color: var(--accent-color);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.vantagens-lista h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vantagens-lista p {
  font-size: 18px;
  color: var(--text-light);
}

/* Preços Section */
.precos {
  background-color: var(--bg-light);
  text-align: center;
}

.precos-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.preco-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: var(--transition);
}

.preco-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.preco-card.destaque {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.preco-card.destaque:hover {
  transform: scale(1.05) translateY(-10px);
}

.preco-header {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 20px;
}

.preco-header h3 {
  margin-bottom: 10px;
  color: var(--text-white);
}

.preco {
  font-size: 36px;
  font-weight: 700;
}

.preco-body {
  padding: 30px 20px;
}

.preco-body ul {
  margin-bottom: 30px;
  text-align: left;
}

.preco-body ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}

.preco-body ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.pagamento-info {
  margin-top: 40px;
  text-align: center;
}

.pagamento-icons {
  font-size: 36px;
  margin-top: 10px;
}

.pagamento-icons span {
  margin: 0 10px;
}

/* Depoimentos Section */
.depoimentos {
  background-color: var(--bg-white);
  text-align: center;
}

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

.depoimento-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.depoimento-texto {
  margin-bottom: 20px;
  position: relative;
}

.depoimento-texto:before {
  content: '"';
  font-size: 60px;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.depoimento-texto p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
}

.autor-foto {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.autor-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.autor-info h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.autor-info p {
  margin: 0;
  font-size: 16px;
  color: var(--text-light);
}

/* FAQ Section */
.faq {
  background-color: var(--bg-light);
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.faq-item p {
  font-size: 18px;
  color: var(--text-light);
}

/* Contato Section */
.contato {
  background-color: var(--bg-white);
}

.contato .container {
  display: flex;
  gap: 60px;
}

.contato-info, .contato-form {
  flex: 1;
}

.contato-detalhes {
  margin-top: 30px;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contato-item .icon {
  font-size: 24px;
  margin-right: 15px;
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-item p {
  margin: 0;
  font-size: 18px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.form-group textarea {
  resize: vertical;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.footer-logo p {
  color: var(--text-light);
  font-size: 16px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 20px;
}

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

.footer-links ul li a {
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
}

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

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 20px;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .hero .container,
  .vantagens .container,
  .contato .container {
    flex-direction: column;
  }
  
  .hero-image,
  .vantagens-image {
    margin-top: 40px;
  }
  
  .destaque .container {
    flex-wrap: wrap;
  }
  
  .card {
    min-width: 250px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  p {
    font-size: 18px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  nav {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .precos-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .preco-card {
    width: 100%;
    max-width: 100%;
  }
  
  .preco-card.destaque {
    transform: scale(1);
  }
  
  .preco-card.destaque:hover {
    transform: translateY(-10px);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0 40px;
  }
  
  .servicos-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}