
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
  /* GR Locações Brand Colors */
  --gr-yellow: #FFD700;
  --gr-blue: #1E3A8A;
  --gr-blue-light: #3B82F6;
  --gr-dark: #1F2937;
  --gr-gray: #6B7280;
  --gr-light: #F9FAFB;
  --gr-white: #FFFFFF;
  --gr-orange: #F59E0B;
  
  /* Bootstrap overrides */
  --bs-primary: #1E3A8A;
  --bs-secondary: #FFD700;
  --bs-success: #10B981;
  --bs-warning: #F59E0B;
}

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

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

/* Custom Typography */
.display-1 { font-weight: 800; }
.display-2 { font-weight: 700; }
.display-3 { font-weight: 700; }
.display-4 { font-weight: 600; }
.display-5 { font-weight: 600; }
.display-6 { font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--gr-dark);
}

.text-primary { color: var(--gr-blue) !important; }
.text-secondary { color: var(--gr-yellow) !important; }
.bg-primary { background-color: var(--gr-blue) !important; }
.bg-secondary { background-color: var(--gr-yellow) !important; }
.btn-primary { 
  background-color: var(--gr-blue); 
  border-color: var(--gr-blue);
  font-weight: 600;
}
.btn-primary:hover { 
  background-color: #1E40AF; 
  border-color: #1E40AF;
}
.btn-secondary { 
  background-color: var(--gr-yellow); 
  border-color: var(--gr-yellow);
  color: var(--gr-dark);
  font-weight: 600;
}
.btn-secondary:hover { 
  background-color: #EAB308; 
  border-color: #EAB308;
  color: var(--gr-dark);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--gr-blue) 0%, #1E40AF 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Top Bar */
.top-bar {
  background-color: var(--gr-yellow);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar .btn {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
}

.logo-container img {
  max-height: 80px;
  width: auto;
}

/* Equipment Cards */
.equipment-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--gr-yellow);
}

.equipment-icon {
  font-size: 3rem;
  color: var(--gr-blue);
  margin-bottom: 1.5rem;
}

.equipment-card h4 {
  color: var(--gr-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Differentials Section */
.differentials-section {
  background: linear-gradient(45deg, var(--gr-light) 0%, #E5E7EB 100%);
}

.differential-item {
  text-align: center;
  padding: 2rem 1rem;
}

.differential-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--gr-blue), var(--gr-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 3px solid var(--gr-yellow);
}

.form-control {
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gr-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gr-dark) 0%, #374151 100%);
  color: white;
}

.footer a {
  color: var(--gr-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Store Facade */
.store-facade {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(45deg, var(--gr-yellow) 0%, var(--gr-orange) 100%);
  color: var(--gr-dark);
}

.cta-section h2 {
  color: var(--gr-dark);
  font-weight: 700;
}

/* WhatsApp floating button styles */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  color: #FFF;
  text-decoration: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .equipment-card {
    margin-bottom: 2rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Equipment Gallery Carousel */
.equipment-carousel .carousel-item img {
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-indicators button {
  background-color: var(--gr-yellow);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--gr-blue);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Utility Classes */
.text-gr-yellow { color: var(--gr-yellow) !important; }
.text-gr-blue { color: var(--gr-blue) !important; }
.bg-gr-yellow { background-color: var(--gr-yellow) !important; }
.bg-gr-blue { background-color: var(--gr-blue) !important; }

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--gr-yellow), var(--gr-orange));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gr-gray);
  margin-bottom: 3rem;
}
