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

:root {
  /* Color Variables */
  --primary: #1e3a5f; /* Deep navy blue */
  --primary-light: #2d5a8f;
  --primary-foreground: #ffffff;
  --secondary: #3b82f6; /* Bright blue */
  --secondary-foreground: #ffffff;
  --accent: #fbbf24; /* Yellow for CTAs */
  --accent-foreground: #1e3a5f;
  --background: #ffffff;
  --foreground: #1f2937;
  --muted: #d7d1d1;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --card-foreground: #1f2937;

  /* Spacing */
  --container-max-width: 1280px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;

  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
   
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgb(3, 1, 0);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Added top padding so logo doesn't touch browser edge */
  padding-top: var(--spacing-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  height: 80px; /* Fixed header height to prevent expansion */
  overflow: visible; /* Allow logo to overflow if needed */
}

.logo {
  display: flex;
  align-items: center;
  height: 100%; /* Logo container takes full header height */
}

.logo img {
  height: 250px; /* Set logo height to 250px as requested */
  width: auto;
  object-fit: contain; /* Ensure logo scales properly */
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav a {
  color: #f7e8e8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.phone-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: #6d6c6c;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.phone-link:hover {
  opacity: 0.8;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #656565;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #f59e0b;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-foreground);
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-location {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xl);
}

/* Card Styles */
.card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-xl);
}

.estimate-card {
  position: relative;
  margin-top: -4rem;
  z-index: 20;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.estimate-card h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

.estimate-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Section Styles */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-bg-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.section-bg-muted {
  background-color: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.textAlign {
  text-align: center;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
  color: var(--muted-foreground);
}

.section-bg-primary .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-bg-primary .section-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Repair Process */
.process-step {
  text-align: center;
}

.process-card {
  background-color: var(--card);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-md);
}

.process-icon {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-title {
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--foreground);
}

.process-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.process-number {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 700;
}

.process-label {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--spacing-sm);
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.content-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #666665;
  margin-bottom: var(--spacing-md);
}

.content-text {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.section-bg-primary .content-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Service Cards */

.service-card {
  position: relative;
 background-image: url("images/FT1.jpg");
  background-size: cover;        /* cobre toda a área */
  background-position: center;   /* centraliza a imagem */
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;                   /* texto claro se a imagem for escura */
  padding: 20px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* camada escura sobre a imagem */
}

.service-content {
  position: relative; /* mantém o texto acima da camada escura */
  z-index: 1;
}


.service-card:hover {
    background-color: #e1f0ff; /* cor de destaque ao passar o mouse */
    transform: translateY(-5px); /* leve efeito de elevação */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* sombra maior */
	
}

.service-card.featured1 {
  background-color: var(--primary);
  color: #fff;
  background-image: url("../images/FT19.jpeg");
  opacity: 1;
 
}
.service-card.featured2 {
  background-color: var(--primary);
  color: #fff;
  background-image: url("../images/FT12.jpeg");
  opacity: 1;
 
}
.service-card.featured3 {
  background-color: var(--primary);
  color: #fff;
  background-image: url("../images/FT24.jpeg");
  opacity: 1;
 
}
.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: var(--spacing-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  background-color: rgba(59, 130, 246, 0.1);
}

.service-card.featured .service-icon {
  background-color: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.service-card.featured .service-icon svg {
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.service-description {
  color: #fff;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-3xl) 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 300px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
}

.footer-content {
  padding: var(--spacing-3xl) 0;
}

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

.footer-section h4 {
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-foreground);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  background-image: url("../images/FT5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
background-position: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.breadcrumb {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

/* Contact Page */
.contact-info {
  margin-bottom: var(--spacing-xl);
}

.contact-info h4 {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.contact-info p {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-xs);
}

.contact-form-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.contact-form-card p {
  opacity: 0.8;
  margin-bottom: var(--spacing-lg);
  font-size: 0.875rem;
}

.contact-form-card .form-input,
.contact-form-card .form-textarea {
  background-color: white;
  color: var(--foreground);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--card);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-card.featured {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.testimonial-quote {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.3;
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonial-card.featured .testimonial-text {
  color: var(--accent-foreground);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--spacing-sm);
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-card.featured .star {
  fill: var(--accent-foreground);
  color: var(--accent-foreground);
}

.testimonial-author {
  font-weight: 600;
}

/* Map Container */
.map-container {
  background-color: var(--muted);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
 
  justify-content: center;
}

.locations-list {
  background-color: var(--card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.locations-list h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.location-group {
  margin-bottom: var(--spacing-lg);
}

.location-group h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
}

.location-group ul {
  list-style: none;
}

.location-group ul li {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
}

.location-group ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-title {z
    font-size: 2.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-title {
    font-size: 2rem;
  }
}



/* Header Responsivo */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botão do mobile menu */
.mobile-menu-btn {
    display: none;
    background-color: #fff; /* fundo branco */
    border: 1px solid #ddd; /* borda leve para contraste */
    border-radius: 6px;     /* cantos levemente arredondados */
    cursor: pointer;
    padding: 6px;
    transition: background 0.3s ease;
}

/* Efeito ao passar o mouse */
.mobile-menu-btn:hover {
    background-color: #f0f0f0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none; /* escondemos para mobile */
        flex-direction: column;
        width: 100%;
        background-color: #1e3a5f;
        padding: 15px 0;
    }

    .nav a {
        padding: 10px 20px;
    }

    .header-actions a {
        padding: 10px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.active,
    .header-actions.active {
        display: flex;
    }
}



/* ===== BOTÃO WHATSAPP PULSANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background-color: #25d366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out;
}

/* Efeito de pulsação */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.15);
  background-color: #1ebe5d;
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

