@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');*{margin:0;padding:0;box-sizing:border-box;}:root{--primary-color:#2563EB;--secondary-color:#1E40AF;--accent-color:#10B981;--text-dark:#1F2937;--text-light:#6B7280;--white:#FFFFFF;--gray-bg:#F9FAFB;--gradient-primary:linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);--gradient-success:linear-gradient(135deg, #10B981 0%, #059669 100%);--gradient-hero:linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #60A5FA 100%);}html{scroll-behavior:smooth;height:100vh;display:flex;flex-direction:column;}body{font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;line-height:1.6;color:var(--text-dark);overflow-x:hidden;min-height:100vh;flex:1;}.hero{min-height:90vh;background:var(--gradient-hero);position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;z-index:1;}.hero-image-section{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;}.hero-image-section img{width:100%;height:100%;object-fit:cover;display:block;}.hero-image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(37, 99, 235, 0.6) 50%, rgba(96, 165, 250, 0.5) 100%);}.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-image:repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px),repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);animation:patternMove 20s linear infinite;z-index:1;}@keyframes patternMove{0%{transform:translate(0, 0);}100%{transform:translate(70px, 70px);}}.hero-content{text-align:center;z-index:2;padding:2rem;max-width:1000px;animation:fadeInUp 1s ease-out;position:relative;}.hero-logo{margin-bottom:2rem;}.logo-placeholder{background:rgba(255, 255, 255, 0.1);backdrop-filter:blur(10px);padding:1.5rem 3rem;border-radius:15px;border:2px solid rgba(255, 255, 255, 0.2);display:flex;flex-direction:column;align-items:center;gap:0.5rem;}.logo-placeholder span{font-size:3rem;color:white;}.logo-placeholder p{font-size:1.5rem;font-weight:700;color:white;margin:0;letter-spacing:2px;}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}.hero h1{font-size:clamp(2rem, 5vw, 3.5rem);color:var(--white);margin-bottom:1rem;text-shadow:2px 2px 8px rgba(0,0,0,0.5);font-weight:700;}.hero p{font-size:clamp(1rem, 2.5vw, 1.4rem);color:var(--white);margin-bottom:2rem;text-shadow:1px 1px 4px rgba(0,0,0,0.3);opacity:0.95;}.cta-button{display:inline-flex;align-items:center;gap:10px;padding:1.2rem 2.5rem;background:#25D366;color:var(--white);text-decoration:none;border-radius:50px;font-size:1.2rem;font-weight:bold;box-shadow:0 10px 30px rgba(37, 211, 102, 0.3);transition:all 0.3s ease;animation:pulse 2s infinite;}@keyframes pulse{0%, 100%{transform:scale(1);}50%{transform:scale(1.05);}}.cta-button:hover{transform:translateY(-3px);box-shadow:0 15px 40px rgba(37, 211, 102, 0.4);}.products{padding:4rem 1rem;background:var(--gray-bg);position:relative;z-index:5;}.section-title{text-align:center;font-size:clamp(2rem, 4vw, 3rem);color:var(--text-dark);margin-bottom:1rem;position:relative;}.section-subtitle{text-align:center;color:var(--text-light);font-size:1.2rem;margin-bottom:3rem;}.products-container{max-width:1200px;margin:0 auto;}.product-card{background:var(--white);border-radius:15px;overflow:hidden;box-shadow:0 5px 20px rgba(0,0,0,0.08);margin-bottom:2rem;transition:all 0.3s ease;display:grid;grid-template-columns:1fr 1.5fr;gap:0;}@media (max-width: 968px){.product-card{grid-template-columns:1fr;}}.product-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.15);}.product-image-section{background:var(--gray-bg);padding:1.5rem;display:flex;flex-direction:column;gap:1rem;}.product-image-main{width:100%;height:450px;background:white;border-radius:10px;overflow:hidden;position:relative;box-shadow:0 3px 10px rgba(0,0,0,0.1);display:flex;align-items:center;justify-content:center;}.product-image-main img{display:block;object-fit:cover;object-position:center;width:100%;height:100%;}.image-placeholder{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);color:var(--text-light);}.image-placeholder span{font-size:3rem;margin-bottom:0.5rem;opacity:0.5;}.image-placeholder p{font-weight:600;margin:0;}.image-placeholder small{font-size:0.85rem;opacity:0.7;}.product-image-gallery{display:grid;grid-template-columns:repeat(4, 1fr);gap:0.5rem;}.gallery-item{aspect-ratio:1;background:white;border-radius:8px;overflow:hidden;position:relative;box-shadow:0 2px 5px rgba(0,0,0,0.1);cursor:pointer;transition:all 0.3s ease;}.gallery-item:hover{transform:scale(1.05);box-shadow:0 4px 10px rgba(0,0,0,0.2);}.gallery-item img{display:block;}.gallery-placeholder{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);color:var(--text-light);font-size:0.7rem;text-align:center;padding:0.3rem;}.product-content{padding:0;}.product-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;background:linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);border-bottom:1px solid #e5e7eb;}.product-title{font-size:1.5rem;color:var(--text-dark);font-weight:600;}.product-badge{background:var(--gradient-success);color:var(--white);padding:0.4rem 1rem;border-radius:20px;font-size:0.9rem;font-weight:600;}.product-body{padding:1.5rem;}.product-description{color:var(--text-light);margin-bottom:1.5rem;line-height:1.6;}.product-info{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.5rem;}.info-item{padding:0.8rem;background:var(--gray-bg);border-radius:10px;text-align:center;}.info-label{color:var(--text-light);font-size:0.9rem;margin-bottom:0.3rem;}.info-value{color:var(--text-dark);font-size:1.1rem;font-weight:600;}.pricing-table{background:var(--white);border-radius:10px;overflow:hidden;margin-top:1rem;}.pricing-header{background:var(--gradient-primary);color:var(--white);padding:0.8rem;font-weight:600;text-align:center;}.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));}.price-item{padding:1rem;text-align:center;border:1px solid #e5e7eb;}.price-quantity{font-size:0.9rem;color:var(--text-light);margin-bottom:0.3rem;}.price-value{font-size:1.5rem;color:var(--primary-color);font-weight:700;}.price-unit{font-size:0.8rem;color:var(--text-light);}.benefits{padding:4rem 1rem;background:var(--white);}.benefits-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));gap:2rem;margin-top:3rem;}.benefit-card{text-align:center;padding:2rem;border-radius:15px;background:var(--gray-bg);transition:all 0.3s ease;}.benefit-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.1);}.benefit-icon{width:70px;height:70px;margin:0 auto 1.5rem;background:var(--gradient-primary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;color:var(--white);}.benefit-title{font-size:1.3rem;color:var(--text-dark);margin-bottom:0.8rem;font-weight:600;}.benefit-text{color:var(--text-light);line-height:1.6;}.trust{padding:4rem 1rem;background:var(--gray-bg);}.trust-container{max-width:1000px;margin:0 auto;text-align:center;}.trust-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:2rem;margin-top:2rem;}.trust-card{background:var(--white);padding:2rem;border-radius:15px;box-shadow:0 5px 20px rgba(0,0,0,0.08);}.trust-number{font-size:3rem;color:var(--primary-color);font-weight:700;margin-bottom:0.5rem;}.trust-text{color:var(--text-dark);font-size:1.1rem;}.promo-banner{padding:4rem 1rem;background:linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);position:relative;overflow:hidden;}.promo-banner::before{content:'';position:absolute;top:-50%;right:-10%;width:500px;height:500px;background:radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);border-radius:50%;}.promo-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1;}@media (max-width: 968px){.promo-container{grid-template-columns:1fr;}}.promo-content{padding:2rem;}.promo-title{font-size:clamp(2rem, 4vw, 2.5rem);color:var(--text-dark);margin-bottom:1rem;font-weight:700;}.promo-text{font-size:1.2rem;color:var(--text-light);margin-bottom:2rem;line-height:1.6;}.promo-features{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem;}.promo-feature{font-size:1.1rem;color:var(--text-dark);display:flex;align-items:center;gap:0.5rem;}.promo-image{position:relative;height:500px;background:white;border-radius:20px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,0.15);transition:transform 0.3s ease;}.promo-image:hover{transform:scale(1.02);}.promo-image img{width:100%;height:100%;object-fit:cover;display:block;}.promo-image-placeholder{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);color:var(--text-dark);}.promo-image-placeholder span{font-size:5rem;margin-bottom:1rem;opacity:0.7;}.promo-image-placeholder p{font-size:1.5rem;font-weight:600;margin:0;}.promo-image-placeholder small{font-size:1rem;opacity:0.7;margin-top:0.5rem;}.offer{padding:4rem 1rem;background:var(--gradient-primary);color:var(--white);text-align:center;}.offer-container{max-width:800px;margin:0 auto;}.offer-title{font-size:clamp(1.8rem, 4vw, 2.5rem);margin-bottom:1.5rem;}.offer-features{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));gap:1.5rem;margin:2rem 0;}.offer-item{display:flex;align-items:center;justify-content:center;gap:0.5rem;font-size:1.1rem;}.check-icon{color:var(--accent-color);font-size:1.5rem;}.policies{padding:3rem 1rem;background:var(--white);}.policies-container{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:2rem;}.policy-item{display:flex;align-items:start;gap:1rem;}.policy-icon{width:40px;height:40px;background:var(--gradient-success);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);flex-shrink:0;}.policy-content h3{color:var(--text-dark);margin-bottom:0.3rem;}.policy-content p{color:var(--text-light);font-size:0.95rem;}.cta-section{padding:4rem 1rem;background:linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);text-align:center;position:relative;overflow:hidden;}.cta-section::before{content:'📦';position:absolute;font-size:200px;opacity:0.05;top:50%;left:10%;transform:translateY(-50%);}.cta-section::after{content:'🚚';position:absolute;font-size:200px;opacity:0.05;top:50%;right:10%;transform:translateY(-50%);}.cta-content{position:relative;z-index:1;max-width:800px;margin:0 auto;}.cta-title{font-size:clamp(1.8rem, 4vw, 2.5rem);color:var(--white);margin-bottom:1rem;}.cta-text{font-size:1.2rem;color:rgba(255,255,255,0.9);margin-bottom:2rem;}.whatsapp-float{position:fixed;bottom:30px;right:30px;width:70px;height:70px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:35px;box-shadow:0 5px 20px rgba(37, 211, 102, 0.4);text-decoration:none;z-index:100;animation:pulse-whatsapp 2s infinite;}@keyframes pulse-whatsapp{0%{box-shadow:0 0 0 0 rgba(37, 211, 102, 0.7);}70%{box-shadow:0 0 0 20px rgba(37, 211, 102, 0);}100%{box-shadow:0 0 0 0 rgba(37, 211, 102, 0);}}.whatsapp-float:hover{transform:scale(1.1);}footer{background:var(--text-dark);color:var(--white);padding:2rem 1rem;text-align:center;}.footer-content{max-width:1200px;margin:0 auto;}.footer-logo{font-size:1.5rem;font-weight:700;margin-bottom:1rem;color:var(--white);}.footer-info{margin-bottom:1rem;opacity:0.9;}.footer-contact{display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;margin-top:1rem;}.footer-contact a{color:var(--accent-color);text-decoration:none;display:flex;align-items:center;gap:0.5rem;}.footer-contact a:hover{text-decoration:underline;}@media (max-width: 768px){.hero h1{font-size:2rem;}.pricing-grid{grid-template-columns:repeat(2, 1fr);}.trust-grid{grid-template-columns:1fr;}.cta-section::before,.cta-section::after{font-size:100px;}}.highlight{color:var(--primary-color);font-weight:600;}.text-center{text-align:center;}.mb-2{margin-bottom:2rem;}.discount-badge{display:inline-block;background:#EF4444;color:white;padding:0.3rem 0.8rem;border-radius:20px;font-size:0.85rem;font-weight:600;margin-left:0.5rem;animation:blink 2s infinite;}@keyframes blink{0%, 100%{opacity:1;}50%{opacity:0.7;}}a:focus, button:focus, [tabindex]:not([tabindex="-1"]):focus{outline:2px solid #60A5FA;outline-offset:2px;}html, body{height:100%;margin:0;padding:0;}footer{margin-bottom:0;}.testimonials{background-color:#f9f9f9;padding:4rem 2rem;text-align:center;}.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:2rem;max-width:1200px;margin:2rem auto 0;}.testimonial-card{background-color:#ffffff;border-radius:8px;padding:2rem;box-shadow:0 4px 15px rgba(0,0,0,0.07);display:flex;flex-direction:column;align-items:center;}.testimonial-image{width:80px;height:80px;border-radius:50%;object-fit:cover;margin-bottom:1rem;border:3px solid #192A56;}.testimonial-rating{font-size:1.2rem;margin-bottom:1rem;}.testimonial-text{font-style:italic;color:#333;margin-bottom:1.5rem;flex-grow:1;}.testimonial-author-info{font-weight:bold;}.testimonial-author{margin:0;color:#192A56;}.testimonial-source{font-size:0.9rem;font-weight:normal;color:#555;margin:0;}.hero-logo-svg{filter:drop-shadow(0px 0px 3px rgba(255,255,255,0.7));}.cta-button-product{margin-top:1.5rem;width:100%;text-align:center;display:block;}.whatsapp-info-text{font-size:1.1rem;color:var(--text-light, #555);margin-bottom:1.5rem;}.cta-button-inverted{background:white;color:var(--primary-color, #192A56);}.section-title-policies{margin-bottom:2rem;}.footer-copyright{margin-top:2rem;opacity:0.7;font-size:0.9rem;}