/* Google Fonts - Chewy, ROCA TWO e Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roca+Two:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chewy&display=swap");

/* Custom CSS for SUA MARCA NA CHINA */

/* Google Fonts */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* Custom Colors */
:root {
  --custom-red: #d32f2f;
  --custom-red-dark: #b71c1c;
  --custom-red-light: rgba(211, 47, 47, 0.1);
}

.text-custom {
  color: var(--custom-red) !important;
}

.bg-custom {
  background-color: var(--custom-red) !important;
}

.btn-custom {
  background-color: var(--custom-red);
  border-color: var(--custom-red);
  color: white;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--custom-red-dark);
  border-color: var(--custom-red-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-custom:focus,
.btn-custom:active {
  background-color: var(--custom-red-dark);
  border-color: var(--custom-red-dark);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

/* Navigation */
/* Altura fixa do Header */
.navbar {
  height: 80px; /* altura do header */
  display: flex;
  align-items: center; /* centraliza conteúdo verticalmente */
}

/* Container da logo */
.logo-container {
  display: flex;
  align-items: center;
  height: 100%; /* acompanha a altura do header */
}

/* Logo com altura independente */
.logo-image {
  height: 150px; /* altura da logo */
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
}
/* CSS */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float i {
    font-size: 20px;
    margin-right: 8px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Brand Name Styling - Only for brand mentions */
.brand-name {
  font-weight: 400;
  color: var(--custom-red);
  text-transform: lowercase;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
}

.hero-title {
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

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

/* Step Numbers */
.step-number {
  width: 48px;
  height: 48px;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-number-large {
  width: 64px;
  height: 64px;
  font-weight: bold;
  font-size: 1.5rem;
}

.step-number-small {
  width: 24px;
  height: 24px;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--custom-red);
}

/* Form Styles */
.form-control:focus {
  border-color: var(--custom-red);
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

.input-group-text {
  background-color: #f8f9fa;
  border-color: #ced4da;
}

/* Loading Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Remove font-roca class and keep titles with Inter */
.display-3,
.display-4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* Responsive Design */
/* --- Mobile até 768px --- */

@media (max-width: 768px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .logo-image {
        height: 90px;
        width: auto;
        display: block;
    }

    .navbar-toggler {
        margin: 0;
        padding: 0.25rem 1rem;
        border: none;
    }

    #navbarNav {
        padding: 0.5rem 1rem;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        font-size: 13px;
        padding: 8px 12px;
    }

    .whatsapp-float i {
        font-size: 18px;
        margin-right: 6px;
    }
      footer {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .footer-logo-wrapper {
        height: 120px; /* um pouco menor para caber bem */
    }

    .logo-image-footer {
        max-height: 150px;
    }
}

/* --- Ajuste até 576px --- */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .navbar {
        height: 65px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: visible;
    }

    .logo-container {
        position: relative;
        height: 65px;
        overflow: visible;
        display: flex;
        align-items: center;
    }

    .logo-image {
        height: 128px;
        width: auto;
        margin: 0;
        position: relative;
        top: 95%;
        transform: translateY(-50%);
    }

    #navbarNav {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        font-size: 0;
        padding: 10px;
        border-radius: 50%;
    }

    .whatsapp-float i {
        font-size: 22px;
        margin-right: 0;
    }
     footer {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .footer-logo-wrapper {
        height: 100px;
    }

    .logo-image-footer {
        max-height: 130px;
    }
}
/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Hover Effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Border Colors */
.border-danger {
  border-color: rgba(220, 53, 69, 0.3) !important;
}

.border-success {
  border-color: rgba(25, 135, 84, 0.3) !important;
}

.border-warning {
  border-color: rgba(255, 193, 7, 0.3) !important;
}

/* Footer Styles */
footer {
    margin-top: auto;
    padding-top: 0.5rem;  /* antes o py-4 dava ~1.5rem */
    padding-bottom: 0.5rem;
}

.footer-logo-wrapper {
    position: relative;
    height: 60px; /* mantém espaço para a logo */
}

.logo-image-footer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 180px; /* mantém tamanho da logo */
    width: auto;
}
/* Utility Classes */
.text-muted {
  color: #6c757d !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}
