@charset "UTF-8";
:root {
  --frozen-blue: #0033a0;
  --frozen-light: #007bff;
  --frozen-ice: #f8fbff;
  --frozen-dark: #001a57; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--frozen-ice);
  scroll-behavior: smooth; }

/* --- Navbar --- */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--frozen-blue); }

.navbar-brand img {
  height: 60px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.navbar-brand img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); }

.nav-link {
  color: var(--frozen-dark) !important;
  font-weight: 500;
  margin: 0 10px; }

.nav-link:hover {
  color: var(--frozen-blue) !important; }

/* --- Hero Section --- */
.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 26, 87, 0.8)), to(rgba(0, 51, 160, 0.7))), url("../img/background.jpg");
  background: linear-gradient(rgba(0, 26, 87, 0.8), rgba(0, 51, 160, 0.7)), url("../img/background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 0;
  -webkit-clip-path: ellipse(150% 100% at 50% 0%);
          clip-path: ellipse(150% 100% at 50% 0%); }

/* --- Cards & Products --- */
.filter-btn {
  border-radius: 30px;
  padding: 8px 25px;
  margin: 5px;
  border: 2px solid var(--frozen-blue);
  color: var(--frozen-blue);
  background: transparent;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.filter-btn.active,
.filter-btn:hover {
  background: var(--frozen-blue);
  color: white; }

.product-card {
  border: none;
  border-radius: 20px;
  background: white;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%; }

.product-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 51, 160, 0.15);
          box-shadow: 0 20px 40px rgba(0, 51, 160, 0.15); }

.brand-badge {
  background: var(--frozen-blue);
  color: white;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase; }

/* --- Formulario --- */
.contact-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); }

.contact-info-side {
  background: var(--frozen-blue);
  color: white;
  padding: 40px; }

.icon-circle {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.form-control {
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #dee2e6;
  background: #fdfdfd; }

.form-control:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 51, 160, 0.1);
          box-shadow: 0 0 0 0.25rem rgba(0, 51, 160, 0.1);
  border-color: var(--frozen-blue); }

/* --- Botón WhatsApp --- */
.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none; }

.btn-whatsapp:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: white; }

footer {
  background: var(--frozen-dark);
  color: white;
  padding: 60px 0 30px; }

.social-btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0; }

/*# sourceMappingURL=style.css.map */