MIX · extractor de estilos
Template: pulidosrosario.com.ar/index.php · mtime: 2025-11-25 14:29
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 1 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: pulidosrosario.com.ar/index.php */
/* Template mtime: 2025-11-25 14:29:21 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700&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 {
        --primary: #0cc0df;
        --primary-dark: #0aa5c0;
        --secondary: #ff6b35;
        --dark: #2b2d42;
        --light: #f8f9fa;
        --gray: #6c757d;
        --success: #28a745;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s ease;
        --border-radius: 8px;
      }

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

      body {
        font-family: 'Poppins', sans-serif;
        color: var(--dark);
        line-height: 1.6;
        background-color: var(--light);
        overflow-x: hidden;
      }

      h1, h2, h3, h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      h1 { font-size: 2.5rem; }
      h2 { font-size: 2rem; }
      h3 { font-size: 1.5rem; }

      p { margin-bottom: 1rem; }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .section {
        padding: 5rem 0;
        position: relative;
      }

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

      .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 1rem auto;
        border-radius: 2px;
      }

      .btn {
        display: inline-block;
        padding: 0.8rem 1.8rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-size: 1rem;
      }

      .btn-primary {
        background-color: var(--primary);
        color: white;
      }

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

      .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
      }

      .btn-outline:hover {
        background-color: var(--primary);
        color: white;
      }

      /* Header & Navigation */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: var(--transition);
        padding: 1rem 0;
      }

      header.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
        padding: 0.5rem 0;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        display: flex;
        align-items: center;
      }

      .logo img {
        height: 40px;
        margin-right: 0.5rem;
      }

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

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 1.5rem;
      }

      .nav-links a {
        color: white;
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
      }

      .nav-links a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: white;
        transition: var(--transition);
      }

      .nav-links a:hover:after {
        width: 100%;
      }

      header.scrolled .logo,
      header.scrolled .nav-links a {
        color: var(--dark);
      }

      header.scrolled .nav-links a:after {
        background-color: var(--primary);
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
      }

      header.scrolled .mobile-menu-btn {
        color: var(--dark);
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        min-height: 700px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero.png') no-repeat center center/cover;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
        position: relative;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1.5rem;
        animation: fadeInUp 1s ease;
      }

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

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
      }

      .scroll-down {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 1.5rem;
        animation: bounce 2s infinite;
        cursor: pointer;
      }

      /* About Section */
      .about {
        background-color: white;
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 3rem;
      }

      .about-text {
        flex: 1;
      }

      .about-img {
        flex: 1;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .about-img img {
        width: 100%;
        height: auto;
        transition: var(--transition);
      }

      .about-img:hover img {
        transform: scale(1.03);
      }

      /* Services Section */
      .services {
        background-color: #f8f9fa;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .service-card {
        background-color: white;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        text-align: center;
        padding: 2rem;
      }

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

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

      .service-card h3 {
        margin-bottom: 1rem;
      }

      /* Why Choose Us Section */
      .why-us {
        background-color: white;
      }

      .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }

      .feature {
        text-align: center;
        padding: 2rem;
        border-radius: var(--border-radius);
        background-color: #f8f9fa;
        transition: var(--transition);
      }

      .feature:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-5px);
      }

      .feature:hover .feature-icon {
        color: white;
      }

      .feature-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      /* Portfolio Section */
      .portfolio {
        background-color: #f8f9fa;
      }

      .portfolio-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .filter-btn {
        padding: 0.5rem 1.5rem;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 30px;
        cursor: pointer;
        transition: var(--transition);
      }

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

      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
      }

      .portfolio-item {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .portfolio-img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(12, 192, 223, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: var(--transition);
        color: white;
        padding: 1rem;
        text-align: center;
      }

      .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
      }

      .portfolio-item:hover .portfolio-img {
        transform: scale(1.1);
      }

      /* Testimonials Section */
      .testimonials {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
        color: white;
        text-align: center;
      }

      .testimonials .section-title:after {
        background-color: white;
      }

      .testimonial-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
      }

      .testimonial {
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        margin: 0 1rem;
        backdrop-filter: blur(5px);
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
      }

      .testimonial-author {
        font-weight: 600;
      }

      .testimonial-role {
        color: #ccc;
        font-size: 0.9rem;
      }

      .slick-dots {
        display: flex;
        justify-content: center;
        list-style: none;
        margin-top: 2rem;
      }

      .slick-dots li {
        margin: 0 0.25rem;
      }

      .slick-dots button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        font-size: 0;
        cursor: pointer;
        transition: var(--transition);
      }

      .slick-dots .slick-active button {
        background-color: white;
      }

      /* FAQ Section */
      .faq {
        background-color: white;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 1rem;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

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

      .faq-question:hover {
        background-color: var(--primary-dark);
      }

      .faq-answer {
        padding: 1.5rem;
        background-color: #f8f9fa;
        display: none;
      }

      .faq-item.active .faq-answer {
        display: block;
      }

      /* Contact Section */
      .contact {
        background-color: #f8f9fa;
      }

      .contact-container {
        background-color: #0aa5c0;
      
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
      
        /* 🔽 Borde redondeado gris */
        border: 2px solid #ccc;
        border-radius: 15px;
        padding: 2rem;
      }


      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .contact-icon {
        font-size: 1.5rem;
        color: var(--primary);
      }

      .contact-text h3 {
        background-color: #f8f9fa;

        margin-bottom: 0.5rem;
      }

      .contact-form {
        background-color: #282c34;

        background-color: white;
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-control {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: var(--border-radius);
        font-family: inherit;
        transition: var(--transition);
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* Footer */
      .footer {
        background-color: var(--dark);
        color: white;
        padding: 4rem 0 2rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: inline-block;
      }

      .footer-logo span {
        color: var(--primary);
      }

      .footer-about p {
        margin-bottom: 1.5rem;
        opacity: 0.8;
      }

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

      .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        transition: var(--transition);
      }

      .social-link:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
      }

      .footer-links h3 {
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
      }

      .footer-links h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
      }

      .footer-links ul {
        list-style: none;
      }

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

      .footer-links a {
        opacity: 0.8;
        transition: var(--transition);
      }

      .footer-links a:hover {
        opacity: 1;
        color: var(--primary);
        padding-left: 5px;
      }

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

      .footer-bottom p {
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Floating Action Buttons */
      .floating-btns {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        z-index: 999;
      }

      .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        cursor: pointer;
      }

      .whatsapp-btn {
        background-color: #25D366;
      }

      .facebook-btn {
        background-color: #3b5998;
      }

      .phone-btn {
        background-color: var(--primary);
      }

      .floating-btn:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: var(--shadow-hover);
      }

      /* Back to Top Button */
      .back-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
      }

      .back-to-top.active {
        opacity: 1;
        visibility: visible;
      }

      .back-to-top:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
      }

      /* Carrusel de Trabajos */
      .ticker-img {
        max-height: 500px;
        width: auto;
        object-fit: contain;
        margin: 0 auto;
      }

      .carousel-control-prev,
      .carousel-control-next {
        filter: invert(1);
        width: 5%;
      }

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

      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0) translateX(-50%);
        }
        40% {
          transform: translateY(-20px) translateX(-50%);
        }
        60% {
          transform: translateY(-10px) translateX(-50%);
        }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .about-content {
          flex-direction: column;
        }
        
        .about-img {
          order: -1;
        }
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 80px);
          background-color: white;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transition: var(--transition);
          z-index: 999;
        }

        .nav-links.active {
          left: 0;
        }

        .nav-links li {
          margin: 1rem 0;
        }

        .nav-links a {
          color: var(--dark);
          font-size: 1.2rem;
        }

        header.scrolled .nav-links {
          top: 70px;
          height: calc(100vh - 70px);
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-btns {
          flex-direction: column;
          gap: 1rem;
        }

        .btn {
          width: 100%;
        }

        .section {
          padding: 3rem 0;
        }

        .ticker-img {
          max-height: 300px;
        }
      }

      @media (max-width: 576px) {
        .hero h1 {
          font-size: 2rem;
        }

        .hero p {
          font-size: 1rem;
        }

        .portfolio-grid {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .ticker-img {
          max-height: 250px;
        }
      }

      
Manifest preview
{
    "template": "pulidosrosario.com.ar/index.php",
    "template_mtime": 1764080961,
    "template_mtime_human": "2025-11-25T14:29:21+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700&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=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700&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": 1,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}