/* ======================================== LOGINS.PT – MAIN STYLESHEET ======================================== */ /* ---- CSS Variables ---- */ :root { --primary: #10b981; --primary-light: #34d399; --primary-dark: #059669; --secondary: #7c3aed; --accent: #00d4ff; --success: #10b981; --warning: #f59e0b; --danger: #ef4444; --bg-dark: #141a29; --bg-card: #1a2233; --bg-card2: #242d40; --bg-surface: #2a374a; --text-primary: #f1f5f9; --text-secondary: #94a3b8; --text-muted: #64748b; --border: rgba(255,255,255,0.08); --border-active: rgba(16, 185, 129,0.5); --gradient-hero: linear-gradient(135deg, #141a29 0%, #0d1b3e 50%, #141a29 100%); --gradient-primary: linear-gradient(135deg, #10b981, #7c3aed); --gradient-accent: linear-gradient(135deg, #00d4ff, #10b981); --shadow-sm: 0 2px 8px rgba(0,0,0,0.3); --shadow-md: 0 8px 24px rgba(0,0,0,0.4); --shadow-lg: 0 20px 60px rgba(0,0,0,0.5); --shadow-glow: 0 0 30px rgba(16, 185, 129,0.3); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px; --radius-full: 9999px; --transition: 0.3s cubic-bezier(0.4,0,0.2,1); --font-main: 'Inter', sans-serif; --font-display: 'Space Grotesk', sans-serif; } /* ---- Reset & Base ---- */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: var(--font-main); background: var(--bg-dark); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; } a { color: inherit; text-decoration: none; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; display: block; } button { cursor: pointer; border: none; background: none; font-family: var(--font-main); } input, select { font-family: var(--font-main); outline: none; } /* ---- Container ---- */ .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; } /* ---- Section Headers ---- */ .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; background: linear-gradient(135deg, #fff 0%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .section-header.light h2 { background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; } .section-badge { display: inline-block; background: rgba(16, 185, 129,0.15); border: 1px solid rgba(16, 185, 129,0.3); color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px; } /* ================================================ TOP BAR ================================================ */ /* Topbar layout rule */ .topbar { /* Defined below in fixed section */ } .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; } .topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; } .topbar-left span, .topbar-right a { color: var(--text-secondary); display: flex; align-items: center; gap: 6px; font-size: 0.78rem; } .topbar-right a:hover { color: var(--accent); } .topbar-left i, .topbar-right i { color: var(--primary); font-size: 0.75rem; } #topbar-login, #topbar-webmail { background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: var(--radius-full); border: 1px solid var(--border); } #topbar-login:hover, #topbar-webmail:hover { background: rgba(16, 185, 129,0.1); border-color: var(--primary); color: white; } /* ================================================ HEADER ================================================ */ .topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; background: rgba(10, 14, 26, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 0.8rem; } .header { background: rgba(10,14,26,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0; position: fixed; top: 37px; left: 0; right: 0; z-index: 1000; transition: var(--transition); } .header.scrolled { background: rgba(10,14,26,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); top: 0; } body { padding-top: 110px; /* Offset for fixed header + topbar */ } .header-inner { display: flex; align-items: center; height: 72px; gap: 32px; } /* Logo */ .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; } .logo-icon { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; box-shadow: var(--shadow-glow); } .logo-icon.small { width: 32px; height: 32px; font-size: 0.9rem; } .logo-text { display: flex; align-items: baseline; } .logo-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; } .logo-tld { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--primary); } /* Navigation */ .nav-desktop { flex: 1; } .nav-list { display: flex; align-items: center; gap: 4px; list-style: none; } .nav-item { position: relative; } .nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; color: var(--text-secondary); font-size: 0.88rem; font-weight: 500; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; } .nav-link i { font-size: 0.7rem; transition: transform 0.3s; } .nav-link:hover { color: white; background: rgba(255,255,255,0.05); } .nav-item:hover .nav-link { color: white; } .nav-item:hover .nav-link i { transform: rotate(180deg); } /* Mega Dropdown */ .mega-dropdown, .dropdown-simple { display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); min-width: 680px; gap: 24px; z-index: 9999; animation: dropdownFade 0.2s ease; } .mega-dropdown { display: none; } .mega-dropdown.cols-4 { grid-template-columns: repeat(3, 1fr) 220px; min-width: 820px; } .mega-dropdown.cols-3 { grid-template-columns: repeat(2, 1fr) 220px; min-width: 640px; } .mega-dropdown.cols-2 { grid-template-columns: 1fr 220px; min-width: 440px; } .dropdown-simple { display: none; grid-template-columns: 1fr 1fr; min-width: 480px; } .nav-item:hover .mega-dropdown, .nav-item:hover .dropdown-simple { display: grid; } @keyframes dropdownFade { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } } .mega-col h4, .dropdown-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; } .mega-col ul li, .dropdown-col ul li { margin-bottom: 4px; } .mega-col ul li a, .dropdown-col ul li a { color: var(--text-secondary); font-size: 0.85rem; padding: 4px 8px; border-radius: 6px; display: block; transition: var(--transition); } .mega-col ul li a:hover, .dropdown-col ul li a:hover { color: white; background: rgba(16, 185, 129,0.1); padding-left: 12px; } .mega-promo { background: var(--gradient-primary); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; overflow: hidden; position: relative; } .mega-promo-img { width: 100%; height: 100px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 4px; opacity: 0.85; transition: var(--transition); } .mega-promo:hover .mega-promo-img { opacity: 1; transform: scale(1.05); } .mega-promo .promo-badge { background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: white; } .mega-promo p { color: rgba(255,255,255,0.9); font-size: 0.85rem; } .mega-promo p strong { color: white; font-size: 1.1rem; } .btn-promo { background: white; color: var(--primary); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; display: inline-block; transition: var(--transition); } .btn-promo:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(0,0,0,0.3); } /* Header CTA */ .header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; } .btn-header-login { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid var(--border); transition: var(--transition); display: flex; align-items: center; gap: 6px; } .btn-header-login:hover { color: white; border-color: var(--primary); } .btn-header-signup { background: var(--gradient-primary); color: white; font-size: 0.85rem; font-weight: 600; padding: 9px 20px; border-radius: var(--radius-full); transition: var(--transition); white-space: nowrap; } .btn-header-signup:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); } /* Hamburger */ .hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; } .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); } /* ================================================ HERO SECTION ================================================ */ /* ================================================ HERO SECTION (RESTYLED WITH ROUNDED SLIDER & PROMOS) ================================================ */ .hero { position: relative; min-height: auto; overflow: hidden; padding: 40px 0 60px; background: var(--bg-dark); } .hero-top-search-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; } .hero-top-search-row .search-box { flex: 1; min-width: 320px; margin: 0; } .hero-top-search-row .search-inner { max-width: 650px; margin: 0; background: rgba(255,255,255,0.03); } .hero-top-tags { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; } .hero-top-tags span { font-size: 0.85rem; color: var(--text-secondary); } .hero-top-tags span strong { color: white; } .hero-top-tags .tag-promo { color: var(--accent); font-weight: 600; } /* Full-Width Slider Container (600px - 25% Larger, edge-to-edge) */ .hero-banner-container { position: relative; width: 100%; max-width: 100%; border-radius: 0; overflow: hidden; height: 600px; /* 25% larger than 480px */ box-shadow: var(--shadow-lg), inset 0 0 100px rgba(0, 0, 0, 0.6); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); border-left: none; border-right: none; margin-bottom: 40px; } .hero-banner-container .hero-slider-container { position: absolute; inset: 0; z-index: 1; } .hero-banner-container .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s; padding: 50px 0; /* Adjusted for taller height */ } .hero-banner-container .hero-slide.active { opacity: 1; visibility: visible; z-index: 2; } /* Slide Inner Grid */ .slide-content-wrapper { position: relative; display: grid; grid-template-columns: 1.2fr 1.1fr 1.2fr; align-items: center; height: 100%; z-index: 5; } /* Left & Right Offer Columns */ .offer-col { display: flex; flex-direction: column; justify-content: center; } .offer-col.left-align { text-align: left; align-items: flex-start; } .offer-col.right-align { text-align: right; align-items: flex-end; } .offer-badge { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: #fff; background: var(--warning); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; display: inline-block; letter-spacing: 0.05em; } .offer-badge.ai-badge { background: var(--primary); display: flex; align-items: center; gap: 4px; } .offer-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 8px; } .offer-subtitle { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.4; } .offer-price-row { margin-bottom: 20px; } .offer-price-label { font-size: 0.78rem; color: var(--text-muted); display: block; } .offer-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: white; line-height: 1; } .offer-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); } .offer-price-discount { background: rgba(239, 68, 68, 0.2); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; margin-top: 8px; display: inline-block; } .offer-price-discount.green { background: rgba(16, 185, 129, 0.2); border-color: rgba(16, 185, 129, 0.3); color: #34d399; } .btn-offer { background: var(--success); color: white; font-weight: 700; font-size: 0.9rem; padding: 12px 28px; border-radius: 6px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; } .btn-offer:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); background: #059669; } .btn-offer.blue { background: var(--primary); } .btn-offer.blue:hover { box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); background: var(--primary-dark); } /* Center Person Column with Holographic Circular Portal Design */ .center-person-col { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; } .person-portal { position: relative; width: 260px; height: 260px; border-radius: 50%; padding: 6px; background: linear-gradient(135deg, var(--accent), var(--primary)); box-shadow: 0 0 40px rgba(16, 185, 129, 0.5), inset 0 0 20px rgba(255,255,255,0.2); overflow: hidden; z-index: 5; display: flex; align-items: center; justify-content: center; animation: borderRotate 10s infinite linear; } .slide-hosting .person-portal { background: linear-gradient(135deg, var(--secondary), #d946ef); box-shadow: 0 0 40px rgba(124, 58, 237, 0.5); } .slide-servidores .person-portal { background: linear-gradient(135deg, var(--success), var(--accent)); box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); } .portal-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: #0c1122; position: relative; display: flex; align-items: center; justify-content: center; } .person-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; pointer-events: none; filter: contrast(105%) brightness(95%); transition: transform 0.3s; } .person-portal:hover .person-img { transform: scale(1.08); } @keyframes borderRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Counteracting rotation on image to keep person straight */ .person-img { animation: counterRotate 10s infinite linear; } @keyframes counterRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } } /* Countdown element */ .countdown-box { background: rgba(0,0,0,0.85); border: 1px solid rgba(255,255,255,0.1); padding: 10px 18px; border-radius: 12px; text-align: center; position: absolute; bottom: 20px; z-index: 10; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); min-width: 200px; } .countdown-label { font-size: 0.7rem; text-transform: uppercase; color: var(--text-secondary); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 4px; } .countdown-time { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; display: flex; gap: 4px; justify-content: center; } .countdown-time span { background: #dc2626; padding: 2px 6px; border-radius: 4px; font-weight: 800; } /* Secondary Promo Cards below Slider */ .promo-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; } .promo-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; transition: var(--transition); cursor: pointer; } .promo-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-md); } .promo-card-badge { position: absolute; top: 12px; left: 24px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; background: #f59e0b; color: black; padding: 2px 8px; border-radius: 4px; } .promo-card-badge.green { background: var(--success); color: white; } .promo-card-badge.blue { background: var(--primary); color: white; } .promo-card-content { flex: 1; padding-top: 12px; } .promo-card-content h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 4px; } .promo-card-content p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 12px; } .promo-card-discount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); } .promo-card-discount span { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; display: block; } .promo-card-img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; margin-left: 16px; filter: grayscale(10%) contrast(105%); } @media (max-width: 1024px) { .promo-cards-row { grid-template-columns: 1fr; } .hero-banner-container { height: auto; min-height: 480px; } .slide-content-wrapper { grid-template-columns: 1fr; gap: 30px; padding-bottom: 60px; } .center-person-col { grid-row: 1; height: 300px; } .person-img { max-height: 280px; } .offer-col.right-align { text-align: left; align-items: flex-start; } } .search-inner { display: flex; align-items: center; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 8px 8px 8px 24px; max-width: 700px; margin: 0 auto; transition: var(--transition); backdrop-filter: blur(10px); } .search-inner:focus-within { border-color: var(--primary); background: rgba(16, 185, 129,0.05); box-shadow: 0 0 0 4px rgba(16, 185, 129,0.1); } .search-icon { color: var(--text-muted); font-size: 1.1rem; margin-right: 12px; } #domain-input { flex: 1; background: none; border: none; color: white; font-size: 1.05rem; padding: 6px 0; } #domain-input::placeholder { color: var(--text-muted); } .search-ext-select { border-left: 1px solid var(--border); padding-left: 12px; margin-right: 8px; } #ext-select { background: none; border: none; color: var(--accent); font-size: 0.9rem; font-weight: 600; cursor: pointer; padding: 4px 8px; } #ext-select option { background: var(--bg-card); color: white; } .btn-search { background: var(--gradient-primary); color: white; font-weight: 700; font-size: 0.95rem; padding: 14px 32px; border-radius: 24px; transition: var(--transition); white-space: nowrap; } .btn-search:hover { transform: scale(1.03); box-shadow: var(--shadow-glow); } .search-suggestions { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); } .suggestion-tag { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-secondary); padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.8rem; cursor: pointer; transition: var(--transition); } .suggestion-tag:hover { background: rgba(16, 185, 129,0.1); border-color: var(--primary); color: white; } /* Domain Prices */ .domain-prices { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeInUp 0.6s ease 0.4s both; } .price-tag { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 16px; display: flex; flex-direction: column; align-items: center; position: relative; transition: var(--transition); } .price-tag:hover { border-color: var(--primary); background: rgba(16, 185, 129,0.05); transform: translateY(-2px); } .price-tag.hot { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.05); } .price-tag .ext { font-weight: 700; font-size: 0.95rem; color: white; } .price-tag .price { font-size: 0.78rem; color: var(--text-muted); } .badge-hot { position: absolute; top: -8px; right: -8px; font-size: 0.7rem; } /* Hero Stats */ .hero-stats { display: flex; justify-content: center; align-items: center; gap: 0; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 40px; max-width: 700px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.5s both; } .stat-item { text-align: center; flex: 1; padding: 0 20px; } .stat-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; } .stat-label { font-size: 0.75rem; color: var(--text-muted); } .stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; } /* ================================================ TRUST STRIP ================================================ */ .trust-strip { background: rgba(16, 185, 129,0.08); border-top: 1px solid rgba(16, 185, 129,0.15); border-bottom: 1px solid rgba(16, 185, 129,0.15); padding: 16px 0; overflow: hidden; } .trust-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; } .trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.82rem; font-weight: 500; white-space: nowrap; } .trust-item i { color: var(--success); } /* ================================================ SERVICES SECTION ================================================ */ .services { padding: 100px 0; } .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; } .service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; } .service-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0; transition: var(--transition); z-index: 0; } .service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); } .service-card:hover::before { opacity: 0.03; } .service-card > * { position: relative; z-index: 1; } .service-card.featured { border-color: var(--primary); background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129,0.05) 100%); } .featured-label { position: absolute; top: 0; right: 0; background: var(--gradient-primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 6px 14px; border-radius: 0 var(--radius-lg) 0 var(--radius-md); } .service-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin-bottom: 20px; box-shadow: var(--shadow-md); } .service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 10px; } .service-card > p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; } .service-features { margin-bottom: 24px; } .service-features li { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.82rem; padding: 4px 0; } .service-features li i.fa-check { color: var(--success); } .service-features li i.fa-times { color: var(--text-muted); } .btn-service { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.85rem; font-weight: 600; transition: var(--transition); } .btn-service:hover { gap: 10px; color: var(--accent); } /* ================================================ EXTENSIONS SECTION ================================================ */ .extensions-section { background: linear-gradient(135deg, #060b1a, #0d1b3e, #060b1a); padding: 100px 0; position: relative; overflow: hidden; } .extensions-section::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(16, 185, 129,0.1) 0%, transparent 70%); pointer-events: none; } .extensions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-bottom: 40px; } .ext-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; transition: var(--transition); cursor: pointer; position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; } .ext-card:hover { border-color: var(--primary); background: rgba(16, 185, 129,0.08); transform: translateY(-4px); } .ext-card.hot { border-color: rgba(245,158,11,0.4); } .ext-card.promo { border-color: rgba(16,185,129,0.3); } .ext-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: white; } .ext-price { font-size: 1rem; font-weight: 700; color: var(--primary); } .ext-period { font-size: 0.72rem; color: var(--text-muted); } .ext-badge { position: absolute; top: -8px; right: -8px; font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-full); } .ext-badge.national { background: rgba(16, 185, 129,0.8); color: white; } .ext-badge.popular { background: rgba(245,158,11,0.8); color: white; } .ext-badge.promo-badge { background: rgba(16,185,129,0.8); color: white; } .extensions-cta { text-align: center; } .btn-outline-light { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.2); color: white; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: var(--transition); } .btn-outline-light:hover { border-color: var(--primary); background: rgba(16, 185, 129,0.1); } /* ================================================ PRICING SECTION ================================================ */ .pricing { padding: 100px 0; } .pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; } .toggle-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; } .toggle-switch { position: relative; display: inline-block; width: 52px; height: 28px; } .toggle-switch input { opacity: 0; width: 0; height: 0; } .toggle-slider { position: absolute; inset: 0; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); border: 1px solid var(--border); cursor: pointer; transition: var(--transition); } .toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: var(--transition); } .toggle-switch input:checked + .toggle-slider { background: var(--primary); border-color: var(--primary); } .toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); } .save-badge { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--success); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); margin-left: 6px; } .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto 24px; } .plan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: var(--transition); } .plan-card:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129,0.3); } .plan-card.featured { background: linear-gradient(135deg, #0d1e4d, #1a1060); border-color: var(--primary); transform: scale(1.04); box-shadow: 0 0 40px rgba(16, 185, 129,0.2); } .plan-card.featured:hover { transform: scale(1.04) translateY(-4px); } .plan-popular { background: var(--gradient-primary); color: white; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-full); display: inline-block; margin-bottom: 16px; } .plan-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 6px; } .plan-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; } .plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; } .plan-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; } .price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: white; } .price-period { color: var(--text-muted); font-size: 0.85rem; } .plan-billed { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 24px; } .btn-plan { display: block; text-align: center; border: 1.5px solid rgba(255,255,255,0.2); color: white; padding: 12px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem; margin-bottom: 28px; transition: var(--transition); } .btn-plan:hover { border-color: var(--primary); background: rgba(16, 185, 129,0.1); } .btn-plan-featured { display: block; text-align: center; background: var(--gradient-primary); color: white; padding: 13px; border-radius: var(--radius-full); font-weight: 700; font-size: 0.9rem; margin-bottom: 28px; transition: var(--transition); } .btn-plan-featured:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); } .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.83rem; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); } .plan-features li:last-child { border-bottom: none; } .plan-features li i.fa-check { color: var(--success); flex-shrink: 0; } .plan-features li i.faded { color: var(--text-muted); opacity: 0.4; flex-shrink: 0; } .pricing-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; max-width: 700px; margin: 0 auto; } .pricing-note a { color: var(--primary); margin-left: 8px; } .pricing-note a:hover { text-decoration: underline; } /* ================================================ WHY US ================================================ */ .why-us { padding: 100px 0; background: var(--bg-card2); } .why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } .why-text .section-badge { display: inline-block; } .why-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: white; margin: 16px 0; } .why-text > p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; } .why-points { display: flex; flex-direction: column; gap: 24px; } .why-point { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); } .why-point:hover { border-color: var(--primary); background: rgba(16, 185, 129,0.04); } .why-icon { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; flex-shrink: 0; } .why-info h4 { font-weight: 600; color: white; margin-bottom: 4px; font-size: 0.95rem; } .why-info p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; } .why-visual { display: flex; align-items: center; justify-content: center; } .why-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; } .why-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); } .why-stat-card:hover { transform: translateY(-4px); border-color: var(--primary); } .why-stat-card.accent { background: var(--gradient-primary); border: none; } .stat-icon { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; } .why-stat-card.accent .stat-icon { color: white; } .stat-val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: white; } .stat-desc { font-size: 0.78rem; color: var(--text-secondary); margin-top: 4px; } .why-stat-card.accent .stat-desc { color: rgba(255,255,255,0.8); } .why-rating { background: var(--bg-card); border: 1px solid rgba(245,158,11,0.3); border-radius: var(--radius-lg); padding: 24px; text-align: center; grid-column: span 2; } .rating-stars { font-size: 1.4rem; color: #f59e0b; margin-bottom: 6px; } .rating-text { font-weight: 700; color: white; margin-bottom: 2px; } .rating-count { font-size: 0.78rem; color: var(--text-muted); } /* ================================================ TESTIMONIALS ================================================ */ .testimonials { padding: 100px 0; } .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; } .testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); } .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(16, 185, 129,0.3); } .testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; } .testimonial-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; } .testi-author { display: flex; align-items: center; gap: 12px; } .testi-avatar { width: 44px; height: 44px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: white; flex-shrink: 0; } .testi-author strong { color: white; font-size: 0.9rem; } .testi-author small { color: var(--text-muted); font-size: 0.75rem; } /* ================================================ FAQ ================================================ */ .faq { padding: 100px 0; background: var(--bg-card2); } .faq-grid { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; } .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); } .faq-item.active { border-color: var(--primary); } .faq-question { width: 100%; text-align: left; padding: 20px 24px; color: white; font-size: 0.95rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; transition: var(--transition); } .faq-question:hover { color: var(--accent); } .faq-icon { color: var(--primary); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; } .faq-item.active .faq-icon { transform: rotate(45deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } .faq-answer p { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; } /* ================================================ CTA BANNER ================================================ */ .cta-banner { position: relative; padding: 100px 0; overflow: hidden; } .cta-bg { position: absolute; inset: 0; background: var(--gradient-primary); } .cta-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; } .cta-content { position: relative; z-index: 1; text-align: center; } .cta-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; } .cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; max-width: 550px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; } .btn-cta-primary { background: white; color: var(--primary); padding: 15px 36px; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem; transition: var(--transition); } .btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); } .btn-cta-secondary { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.4); padding: 15px 36px; border-radius: var(--radius-full); font-weight: 600; font-size: 1rem; transition: var(--transition); backdrop-filter: blur(4px); } .btn-cta-secondary:hover { background: rgba(255,255,255,0.25); } /* ================================================ FOOTER ================================================ */ .footer { background: #060912; border-top: 1px solid var(--border); padding: 80px 0 0; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--border); } .footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; } .footer-brand p { color: var(--text-secondary); font-size: 0.83rem; line-height: 1.6; margin-bottom: 20px; max-width: 240px; } .footer-social { display: flex; gap: 10px; margin-bottom: 20px; } .footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 0.85rem; transition: var(--transition); } .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; } .footer-payments { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .footer-payments i { font-size: 1.6rem; color: var(--text-muted); } .mb-logo, .mbway-logo { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); padding: 3px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; } .footer-col h4 { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; } .footer-col ul li { margin-bottom: 8px; } .footer-col ul li a { color: var(--text-secondary); font-size: 0.83rem; transition: var(--transition); } .footer-col ul li a:hover { color: white; padding-left: 4px; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 16px; } .footer-bottom-left p { color: var(--text-muted); font-size: 0.78rem; } .footer-bottom-right { display: flex; gap: 16px; flex-wrap: wrap; } .footer-bottom-right a { color: var(--text-muted); font-size: 0.78rem; transition: var(--transition); } .footer-bottom-right a:hover { color: white; } /* ================================================ COOKIE BANNER ================================================ */ .cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 680px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; z-index: 10000; box-shadow: var(--shadow-lg); transform: translateY(120px); opacity: 0; transition: 0.5s cubic-bezier(0.4,0,0.2,1); } .cookie-banner.show { transform: translateY(0); opacity: 1; } .cookie-content { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; } .cookie-content i { font-size: 1.4rem; color: var(--warning); } .cookie-content p { flex: 1; color: var(--text-secondary); font-size: 0.83rem; } .cookie-content a { color: var(--primary); text-decoration: underline; } .btn-cookie-accept { background: var(--primary); color: white; padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; } .btn-cookie-accept:hover { background: var(--primary-light); } .btn-cookie-settings { color: var(--text-secondary); font-size: 0.83rem; cursor: pointer; transition: var(--transition); white-space: nowrap; } .btn-cookie-settings:hover { color: white; } /* ================================================ BACK TO TOP ================================================ */ .back-to-top { position: fixed; bottom: 90px; right: 24px; width: 44px; height: 44px; background: var(--gradient-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: var(--shadow-md); z-index: 9999; opacity: 0; transform: translateY(20px); transition: var(--transition); cursor: pointer; } .back-to-top.show { opacity: 1; transform: translateY(0); } .back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); } /* ================================================ ANIMATIONS ================================================ */ @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } } @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } } /* Scroll animations */ .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } /* ================================================ INNER PAGE STYLES (shared) ================================================ */ .page-hero { position: relative; padding: 140px 0 100px; overflow: hidden; text-align: center; background-size: cover; background-position: center; background-repeat: no-repeat; border-bottom: 1px solid var(--border); } .page-hero-bg { position: absolute; inset: 0; z-index: 0; /* Dark overlay to guarantee readability of white text */ background: linear-gradient(180deg, rgba(10, 14, 26, 0.4) 0%, rgba(10, 14, 26, 0.85) 100%); } /* Background image assignments for specific pages */ .page-hero.page-dominios { background-image: url('banner_domains.png'); } .page-hero.page-hosting { background-image: url('banner_hosting.png'); } .page-hero.page-servidores { background-image: url('banner_servidores.png'); } .page-hero.page-email { background-image: url('banner_email.png'); } .page-hero.page-ssl { background-image: url('banner_ssl.png'); } .page-hero.page-sites { background-image: url('banner_sites.png'); } .page-hero.page-wordpress { background-image: url('banner_wordpress.png'); } /* Fallbacks for other pages (custom dark tech gradients) */ .page-hero.page-ecommerce { background-image: linear-gradient(135deg, #141a29 0%, #3a1a05 60%, #141a29 100%); } .page-hero.page-marketing { background-image: linear-gradient(135deg, #141a29 0%, #2e2805 60%, #141a29 100%); } .page-hero.page-suporte { background-image: linear-gradient(135deg, #141a29 0%, #05263a 60%, #141a29 100%); } .page-hero.page-contacto { background-image: linear-gradient(135deg, #141a29 0%, #1e113a 60%, #141a29 100%); } .page-hero.page-sobre { background-image: linear-gradient(135deg, #141a29 0%, #170d30 60%, #141a29 100%); } .page-hero-content { position: relative; z-index: 1; } .page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; } .page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; line-height: 1.7; } .breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; } .breadcrumb a { color: var(--text-muted); } .breadcrumb a:hover { color: var(--accent); } .breadcrumb span { color: var(--text-muted); } .breadcrumb .current { color: var(--text-secondary); } .feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; } .feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); } .feature-card:hover { border-color: var(--primary); transform: translateY(-4px); } .feature-card-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; margin-bottom: 20px; } .feature-card h3 { font-weight: 700; font-size: 1.05rem; color: white; margin-bottom: 10px; } .feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; } /* ================================================ RESPONSIVE ================================================ */ @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .why-content { grid-template-columns: 1fr; gap: 48px; } .why-visual { display: none; } .plans-grid { grid-template-columns: 1fr; max-width: 420px; } .plan-card.featured { transform: none; } .mega-dropdown { min-width: 500px; grid-template-columns: 1fr 1fr; } .mega-promo { display: none; } } @media (max-width: 768px) { .topbar-left { display: none; } .nav-desktop { display: none; } .hamburger { display: flex; } .header-cta { display: none; } .hero { padding: 80px 0 60px; } .hero-stats { flex-direction: column; gap: 16px; } .stat-divider { width: 40px; height: 1px; } .testimonials-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .plans-grid { max-width: 100%; } .search-inner { flex-wrap: wrap; gap: 8px; padding: 12px 16px; border-radius: var(--radius-lg); } .btn-search { width: 100%; } .domain-prices { gap: 8px; } .hero-stats { padding: 20px; } } @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .extensions-grid { grid-template-columns: repeat(2, 1fr); } .services-grid { grid-template-columns: 1fr; } } /* ================================================ HERO PRODUCT SLIDER (GLIDE/TRANSITION) ================================================ */ .hero-slider-container { position: absolute; inset: 0; z-index: 0; } .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s; display: flex; align-items: center; justify-content: center; } .hero-slide.active { opacity: 1; visibility: visible; } /* Themes for slides */ /* Panoramic liquid backgrounds for slides (Text-free CSS design system) */ .slide-dominios { background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(33, 117, 155, 0.1) 0%, transparent 50%), linear-gradient(135deg, #101524 0%, #0a1329 50%, #101524 100%); position: relative; } .slide-dominios::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; opacity: 0.4; } .slide-hosting { background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 50%), linear-gradient(135deg, #101524 0%, #150b24 50%, #101524 100%); position: relative; } .slide-hosting::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; opacity: 0.4; } .slide-servidores { background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), linear-gradient(135deg, #101524 0%, #071f24 50%, #101524 100%); position: relative; } .slide-servidores::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; opacity: 0.4; } .hero-slider-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; } .slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); } .slider-dot.active { background: var(--accent); border-color: var(--accent); width: 28px; border-radius: var(--radius-full); } .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; z-index: 10; cursor: pointer; transition: var(--transition); } .slider-arrow:hover { background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-glow); } .slider-arrow.prev { left: 24px; } .slider-arrow.next { right: 24px; } @media (max-width: 768px) { .slider-arrow { display: none; } } /* ================================================ FOOTER LEGAL EXTENSION STYLES ================================================ */ .footer-contact-info { margin-bottom: 20px; font-size: 0.85rem; } .footer-contact-info p { display: flex; align-items: center; gap: 8px; margin-bottom: 6px !important; color: var(--text-secondary) !important; } .footer-contact-info p a:hover { color: white; } .footer-legal-bar { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px; padding-bottom: 30px; } .footer-legal-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; } .footer-legal-links a { color: var(--text-muted); font-size: 0.78rem; transition: var(--transition); } .footer-legal-links a:hover { color: var(--accent); } .footer-legal-info { text-align: center; font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; } .footer-legal-info a { color: var(--text-secondary); text-decoration: underline; } .footer-legal-info a:hover { color: white; } .footer-legal-note { margin-top: 8px; opacity: 0.8; } /* Theme Toggle Button Style */ .btn-theme-toggle { color: var(--text-primary); font-size: 1.1rem; width: 40px; height: 40px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer; } .btn-theme-toggle:hover { background: rgba(16, 185, 129, 0.1); border-color: var(--primary); color: var(--primary); transform: scale(1.05); } /* ================================================ LIGHT THEME OVERRIDES ================================================ */ body.light-theme { --bg-dark: #f8fafc; --bg-card: #ffffff; --bg-card2: #f1f5f9; --bg-surface: #e2e8f0; --text-primary: #0f172a; --text-secondary: #475569; --text-muted: #64748b; --border: rgba(0, 0, 0, 0.08); --border-active: rgba(16, 185, 129, 0.3); --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #edf2f7 50%, #f8fafc 100%); --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04); --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06); --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08); } /* Light Mode disabled */