/* Estilo para o Layout 2 - Moderno e Minimalista */
:root {
  --primary-color: #1a73e8;
  --secondary-color: #4285f4;
  --accent-color: #34a853;
  --light-color: #f8f9fa;
  --dark-color: #202124;
  --text-color: #5f6368;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

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

/* Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

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

.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 115, 232, 0.3);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-image: url(img/new-cta-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0) 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, rgba(52, 168, 83, 0) 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}

.hero-text h1 span {
  color: var(--primary-color);
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.secondary-button {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.secondary-button:hover {
  background-color: rgba(26, 115, 232, 0.1);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  /*box-shadow: var(--shadow);*/
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
}

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

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 10px;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

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

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

.step-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-card h3 {
  margin: 10px 0 15px;
  color: var(--dark-color);
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

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

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 18px;
}

.client-name {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.client-position {
  color: var(--text-color);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.cta-white-button {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}

.cta-white-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
  background-color: var(--white);
  padding: 60px 0;
}

.faq-item {
  background-color: var(--light-color);
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
    color: #1a1c20;
}

.faq-answer {
  padding: 0 20px 15px;
  display: none;
}

.faq-question.active + .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: #9aa0a6;
  padding: 80px 0 30px;
}

.footer-shape {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	opacity: 0.2;
}

.bg-dark .footer-shape {
	opacity: 0.3;
}

footer.footer-style-one::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	height: 300px;
	width: 100%;
	background: linear-gradient(90deg, #aedec5 0%, #e4d8f7 100%);
	z-index: -1;
	filter: blur(100px);
	opacity: 0.3;
}

footer.footer-style-one.bg-dark::before {
	background: linear-gradient(90deg, #74ffb5 0%, #4c14ff 100%);
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: #9aa0a6;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

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

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.footer-social a {
  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(--white);
  transition: var(--transition);
}

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

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

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    grid-row: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 130px 0 70px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}
#success {
    display: none;
}