MIX · extractor de estilos
Template: brsconstrucciones.com.ar/index.html · mtime: 2025-12-15 13:10
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 2 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: brsconstrucciones.com.ar/index.html */
/* Template mtime: 2025-12-15 13:10:56 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --color-primary: #6ba1bc;
      --color-primary-dark: #5a8a9f;
      --color-primary-light: #7db3ca;
      --color-text: #1a1a1a;
      --color-text-light: #4a4a4a;
      --color-bg: #ffffff;
      --color-bg-light: #f8f9fa;
      --shadow-sm: 0 2px 8px rgba(107, 161, 188, 0.08);
      --shadow-md: 0 4px 16px rgba(107, 161, 188, 0.12);
      --shadow-lg: 0 8px 32px rgba(107, 161, 188, 0.16);
      --shadow-xl: 0 12px 48px rgba(107, 161, 188, 0.2);
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--color-text);
      background: var(--color-bg);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-md);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar.scrolled {
      box-shadow: var(--shadow-lg);
      padding: 0.5rem 0;
    }

    .navbar-brand {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--color-text);
      letter-spacing: -0.5px;
      transition: var(--transition);
    }

    .navbar-brand span {
      color: var(--color-primary);
    }

    .navbar-brand:hover {
      color: var(--color-primary);
      transform: translateY(-2px);
    }

    .nav-link {
      color: var(--color-text);
      font-weight: 500;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: var(--transition);
      position: relative;
    }

    .nav-link:hover {
      color: var(--color-primary);
      background: rgba(107, 161, 188, 0.08);
      transform: translateY(-2px);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--color-primary);
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 60%;
    }

    /* Hero Section */
    .hero {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(107, 161, 188, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 20s infinite ease-in-out;
    }

    @keyframes float {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-30px, -30px) scale(1.1);
      }
    }

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

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1.2;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease-out;
    }

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

    .hero p {
      font-size: 1.25rem;
      color: var(--color-text-light);
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-image {
      animation: fadeInRight 1s ease-out 0.4s backwards;
      position: relative;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-xl);
      transition: var(--transition);
    }

    .hero-image:hover img {
      transform: scale(1.02);
      box-shadow: 0 20px 60px rgba(107, 161, 188, 0.25);
    }

    /* Buttons */
    .btn-primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
      background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    }

    .btn-outline {
      background: transparent;
      color: var(--color-primary);
      padding: 1rem 2.5rem;
      border-radius: 12px;
      border: 2px solid var(--color-primary);
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .btn-outline:hover {
      background: var(--color-primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Section Styles */
    section {
      padding: 80px 0;
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-title h2 {
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--color-text);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      border-radius: 2px;
    }

    .section-title p {
      font-size: 1.15rem;
      color: var(--color-text-light);
      max-width: 700px;
      margin: 1.5rem auto 0;
    }

    /* Cards */
    .card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(107, 161, 188, 0.1);
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      transform: scaleX(0);
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: white;
      font-size: 2rem;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }

    .card:hover .card-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 1rem;
    }

    .card p {
      color: var(--color-text-light);
      line-height: 1.7;
    }

    /* Services */
    .service-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(107, 161, 188, 0.1);
      transition: var(--transition);
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
      transform: scaleY(0);
      transition: var(--transition);
    }

    .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateX(8px);
    }

    .service-card:hover::before {
      transform: scaleY(1);
    }

    .service-icon {
      color: var(--color-primary);
      font-size: 1.5rem;
      margin-right: 1rem;
    }

    .service-card h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-text);
      margin: 0;
    }
    /* =========================
       Gallery (SIN ESTIRAR)
    ========================= */
    .gallery-container {
      position: relative;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
      );
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      transition: var(--transition);
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      transform: translateY(-50%) scale(1.1);
      box-shadow: var(--shadow-lg);
    }
    
    .carousel-inner {
      border-radius: 16px;
      overflow: hidden;
      background: #f3f3f3; /* fondo neutro */
    }
    
    .carousel-item {
      text-align: center;
    }
    
    .carousel-item img {
      border-radius: 16px;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
      max-height: 500px;
      height: auto;
      object-fit: contain;   /* 🔥 CLAVE: no deforma */
      background: #f3f3f3;
    }
    
    .carousel-item img:hover {
      transform: scale(1.02);
    }
    
    /* =========================
       Modal Galería (PRO)
    ========================= */
    .modal-content {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      border: none;
      box-shadow: var(--shadow-xl);
    }
    
    .modal-body {
      padding: 1.5rem;
    }
    
    .modal-body img {
      border-radius: 16px;
      width: 100%;
      max-height: 80vh;
      object-fit: contain;   /* 🔥 también en modal */
      background: #f3f3f3;
    }

    /* FAQs */
    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(107, 161, 188, 0.1);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item:hover {
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--color-text);
      transition: var(--transition);
      user-select: none;
    }

    .faq-question:hover {
      background: rgba(107, 161, 188, 0.05);
    }

    .faq-question i {
      color: var(--color-primary);
      transition: var(--transition);
    }

    .faq-question.active i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-answer-content {
      padding: 0 1.5rem 1.5rem;
      color: var(--color-text-light);
      line-height: 1.7;
    }

    /* Contact Form */
    .form-control {
      border: 2px solid rgba(107, 161, 188, 0.2);
      border-radius: 12px;
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
      transition: var(--transition);
      background: white;
    }

    .form-control:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(107, 161, 188, 0.1);
      outline: none;
    }

    .form-label {
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.5rem;
    }

    .contact-info {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      border-radius: 20px;
      padding: 3rem;
      color: white;
      box-shadow: var(--shadow-xl);
    }

    .contact-info h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }

    .contact-item:hover {
      transform: translateX(8px);
    }

    .contact-item i {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      font-size: 1.25rem;
    }

    .contact-item-content h4 {
      font-size: 0.9rem;
      font-weight: 500;
      opacity: 0.9;
      margin-bottom: 0.25rem;
    }

    .contact-item-content p {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
      padding: 60px 0 30px;
    }

    .footer-content h4 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-content p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--color-primary);
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(107, 161, 188, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--color-primary);
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

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

      .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
      }

      .carousel-item img {
        height: 300px;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
    --wa:#6ba1bc;
    --wa-dark:#5a8a9f;
    --wa-light:#7db3ca;
    --wa-text:#1a1a1a;
    --wa-muted:#6c757d;
    --wa-bg:#ffffff;
    --wa-border:#e3e6ea;
  }
  
  .wa-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    font-family:inherit;
  }
  
  .wa-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    border:none;
  
    /* ✅ Verde oficial WhatsApp */
    background:linear-gradient(135deg,#25D366,#128C7E);
  
    color:#fff;
    display:grid;
    place-items:center;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(37,211,102,.45);
    transition:transform .3s, box-shadow .3s;
  }
  
  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(37,211,102,.55);
  }

  
  .wa-card{
    position:absolute;
    right:0;
    bottom:74px;
    width:min(360px,92vw);
    background:var(--wa-bg);
    border-radius:18px;
    border:1px solid var(--wa-border);
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    overflow:hidden;
    transform:translateY(10px);
    opacity:0;
    transition:.3s;
  }
  .wa-card[aria-modal="true"]{ transform:none; opacity:1; }
  
  .wa-head{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    background:linear-gradient(135deg,var(--wa),var(--wa-dark));
    color:#fff;
  }
  
  .wa-avatar{
    width:40px;
    height:40px;
    background:#fff;
    border-radius:8px;
    display:grid;
    place-items:center;
  }
  
  .wa-title{ font-weight:700; }
  .wa-status{ font-size:.85rem; opacity:.9; }
  
  .wa-close{
    margin-left:auto;
    border:none;
    background:transparent;
    color:#fff;
    font-size:24px;
    cursor:pointer;
  }
  
  .wa-body{
    padding:14px;
    max-height:40vh;
    overflow:auto;
    background:#f8f9fa;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  
  .wa-bubble{
    max-width:88%;
    padding:10px 12px;
    border-radius:14px;
    font-size:.95rem;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
  }
  .wa-bot{
    background:#ffffff;
    border:1px solid var(--wa-border);
    align-self:flex-start;
  }
  .wa-user{
    background:#eaf4f8;
    border:1px solid #cfe4ef;
    align-self:flex-end;
  }
  
  .wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px;
    border-top:1px solid var(--wa-border);
    background:#ffffff;
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px;
    border:1px solid var(--wa-border);
    font-family:inherit;
  }
  .wa-send{
    background:var(--wa);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:0 16px;
    cursor:pointer;
  }
  .wa-send:hover{ background:var(--wa-dark); }
  
  @media(max-width:480px){
    .wa-card{ width:calc(100vw - 24px); }
  }

      
Manifest preview
{
    "template": "brsconstrucciones.com.ar/index.html",
    "template_mtime": 1765804256,
    "template_mtime_human": "2025-12-15T13:10:56+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}