MIX · extractor de estilos
Template: vanesaachavalestetica.com.ar/index.html · mtime: 2025-12-11 14:05
← 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: vanesaachavalestetica.com.ar/index.html */
/* Template mtime: 2025-12-11 14:05:08 */

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

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary-pink: #e4a8ca;
      --primary-green: #99a497;
      --bg-white: #ffffff;
      --text-black: #000000;
      --text-gray: #333333;
      --light-gray: #f8f9fa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg-white);
      color: var(--text-black);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 90px; /* <<< NUEVO: espacio bajo la navbar */
    }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }

    /* Navbar */
    .navbar {
      background: var(--bg-white) !important;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-pink) !important;
    }

    .nav-link {
      color: var(--text-black) !important;
      font-weight: 500;
      margin: 0 0.5rem;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-pink) !important;
    }

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

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

    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary-pink), #d89bb8);
      border: none;
      color: white;
      padding: 0.7rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(228, 168, 202, 0.3);
    }

    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(228, 168, 202, 0.4);
    }

    /* Hero Section */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(228, 168, 202, 0.1), transparent);
      border-radius: 50%;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeInLeft 1s ease;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero h1 .highlight {
      color: var(--primary-pink);
    }

    .hero p.lead {
      font-size: 1.25rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
    }

    .hero-image {
      position: relative;
      z-index: 1;
      animation: fadeInRight 1s ease;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    /* Secciones */
    section {
      padding: 5rem 0;
    }

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

    .section-title h2 {
      font-size: 2.5rem;
      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: 3px;
      background: linear-gradient(90deg, var(--primary-pink), var(--primary-green));
    }

    .section-title p {
      color: var(--text-gray);
      font-size: 1.1rem;
    }

    /* Cards */
    .service-card,
    .feature-card {
      background: var(--bg-white);
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .service-card:hover,
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .service-icon,
    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--primary-pink), #d89bb8);
      color: white;
    }

    .service-card h4,
    .feature-card h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .service-card p,
    .feature-card p {
      color: var(--text-gray);
    }
    /* Galería / Carrusel */
    .gallery-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }
    
    /* Carrusel: respetamos el comportamiento de Bootstrap pero alineamos el contenido */
    .carousel-item {
      position: relative;
      display: none; /* Bootstrap lo maneja con .active */
      justify-content: center;
      align-items: center;
      min-height: 260px;
      background: var(--light-gray);
    }
    
    /* Los estados que deben ser visibles van en flex */
    .carousel-item.active,
    .carousel-item-start,
    .carousel-item-next,
    .carousel-item-prev {
      display: flex;
    }

    
    /* Las imágenes se ven completas según su contenido */
    .gallery-item img,
    .carousel-item img {
      max-height: 420px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 768px) {
      .carousel-item {
        min-height: 220px;
      }
    
      .gallery-item img,
      .carousel-item img {
        max-height: 320px;
      }
    }
    /* Botones del carrusel bien visibles y verdes */
    .carousel-control-prev,
    .carousel-control-next {
      width: 46px;
      height: 46px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--primary-green); /* verdecito de la web */
      border-radius: 50%;
      opacity: 1;               /* que se vean siempre */
      box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: #7d8b7d; /* un poco más oscuro al hover */
    }
    
    /* Sacamos el SVG default de Bootstrap y ponemos flechitas blancas */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-image: none;
      width: 1.5rem;
      height: 1.5rem;
      position: relative;
    }
    
    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #ffffff;
    }
    
    /* Flecha izquierda */
    .carousel-control-prev-icon::before {
      content: '‹';
    }
    
    /* Flecha derecha */
    .carousel-control-next-icon::before {
      content: '›';
    }


    /* FAQs */
    .faq-item {
      background: var(--bg-white);
      border-radius: 10px;
      margin-bottom: 1rem;
      border: 1px solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: var(--light-gray);
    }

    .faq-question i {
      transition: transform 0.3s ease;
      color: var(--primary-pink);
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 1.5rem 1.5rem;
    }

    /* Formulario */
    .form-control,
    .form-select {
      border: 2px solid rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 0.8rem 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--primary-pink);
      box-shadow: 0 0 0 0.2rem rgba(228, 168, 202, 0.25);
    }

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

    /* Footer */
    footer {
      background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
      color: white;
      padding: 3rem 0 1rem;
    }

    footer h5 {
      color: var(--primary-pink);
      margin-bottom: 1.5rem;
    }

    footer a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: var(--primary-pink);
    }

    .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      margin-right: 0.5rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--primary-pink);
      transform: translateY(-3px);
    }

    /* Animaciones */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

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

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

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

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

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

      .gallery-item img {
        width: 300px;
        height: 300px;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
      /* Colores del MODAL (paleta de la web) */
      --wa:#e4a8ca;
      --wa-dark:#c07ba5;
      --wa-text:#111111;
      --wa-muted:#777777;
      --wa-bg:#ffffff;
      --wa-border:#e8e8e8;
      --wa-head:#f9e5f1;
  
      /* Colores del BOTÓN (WhatsApp original) */
      --wa-btn:#25D366;
      --wa-btn-dark:#128C7E;
    }
  
    .wa-float{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:9999;
      font-family:inherit;
    }
  
    /* BOTÓN VERDE WHATSAPP */
    .wa-btn{
      background:linear-gradient(135deg,var(--wa-btn),var(--wa-btn-dark));
      color:#fff;
      border:0;
      width:60px;
      height:60px;
      border-radius:50%;
      display:grid;
      place-items:center;
      box-shadow:0 10px 30px rgba(0,0,0,.18);
      cursor:pointer;
      transition:transform .3s, box-shadow .3s, background .3s;
      position:relative;
      overflow:hidden;
    }
    .wa-btn::after{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.32), rgba(255,255,255,0) 70%);
      opacity:0;
      transition:opacity .3s;
    }
    .wa-btn:hover{
      transform:translateY(-3px) scale(1.05);
      box-shadow:0 14px 36px rgba(0,0,0,.24);
    }
    .wa-btn:hover::after{ opacity:1; }
  
    .wa-card{
      position:absolute;
      right:0;
      bottom:74px;
      width:min(360px,92vw);
      background:var(--wa-bg);
      color:var(--wa-text);
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 18px 60px rgba(0,0,0,.22);
      border:1px solid var(--wa-border);
      transform:translateY(10px);
      opacity:0;
      transition:transform .3s, opacity .3s;
    }
    .wa-card[aria-modal="true"]{
      transform:translateY(0);
      opacity:1;
    }
  
    .wa-head{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px;
      background:var(--wa-head);
      border-bottom:1px solid var(--wa-border);
    }
  
    .wa-avatar{
      width:40px;
      height:40px;
      border-radius:8px;
      background:#fff;
      display:grid;
      place-items:center;
      border:1px solid var(--wa-border);
      overflow:hidden;
    }
  
    .wa-title{
      font-weight:700;
      font-size:1.05rem;
    }
  
    .wa-status{
      font-size:.85rem;
      color:var(--wa-muted);
      display:flex;
      align-items:center;
      gap:6px;
    }
    .wa-status::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:#99a497; /* verde suave de la paleta */
    }
  
    .wa-close{
      margin-left:auto;
      background:transparent;
      color:#000;
      border:0;
      font-size:24px;
      cursor:pointer;
      opacity:.6;
      width:32px;
      height:32px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s;
    }
    .wa-close:hover{
      opacity:1;
      background:rgba(0,0,0,.06);
    }
  
    .wa-body{
      padding:12px 14px;
      max-height:40vh;
      overflow:auto;
      background:#ffffff;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
  
    .wa-bubble{
      max-width:88%;
      padding:10px 12px;
      border-radius:14px;
      line-height:1.35;
      box-shadow:0 4px 10px rgba(0,0,0,.06);
      animation:fadeIn .25s ease;
      font-size:.95rem;
    }
  
    @keyframes fadeIn{
      from{opacity:0; transform:translateY(5px);}
      to{opacity:1; transform:none;}
    }
  
    .wa-bot{
      background:#fdf7fb;
      border:1px solid #f3dcec;
      align-self:flex-start;
      border-bottom-left-radius:4px;
    }
  
    .wa-user{
      background:#edf8f1;
      border:1px solid #cde7d5;
      align-self:flex-end;
      border-bottom-right-radius:4px;
    }
  
    .wa-compose{
      display:grid;
      grid-template-columns:1fr auto;
      gap:8px;
      padding:10px;
      background:#fafafa;
      border-top:1px solid var(--wa-border);
    }
  
    .wa-compose textarea{
      resize:none;
      border-radius:12px;
      padding:10px 12px;
      border:1px solid var(--wa-border);
      background:#ffffff;
      color:var(--wa-text);
      outline:none;
      min-height:44px;
      font-family:inherit;
      font-size:.95rem;
      transition:.2s;
    }
  
    .wa-compose textarea:focus{
      border-color:var(--wa);
      box-shadow:0 0 0 2px rgba(228,168,202,.25);
    }
  
    .wa-send{
      background:var(--wa);
      color:#ffffff;
      border:0;
      border-radius:12px;
      padding:0 16px;
      font-weight:700;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s;
    }
  
    .wa-send:hover{
      background:var(--wa-dark);
      transform:scale(1.05);
    }
  
    .wa-body::-webkit-scrollbar{ width:6px; }
    .wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.02); border-radius:3px; }
    .wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.2); border-radius:3px; }
    .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.3); }
  
    @media (max-width:480px){
      .wa-float{ right:12px; bottom:12px; }
      .wa-card{ width:calc(100vw - 24px); right:0; }
    }

      
Manifest preview
{
    "template": "vanesaachavalestetica.com.ar/index.html",
    "template_mtime": 1765461908,
    "template_mtime_human": "2025-12-11T14:05:08+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css",
        "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}