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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     background: #000214;
     color: #ffffff;
     line-height: 1.6;
 }

 /* Floating Navbar */
 .navbar {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     background: #111547;
     opacity: 99%;
     backdrop-filter: blur(10px);
     border-radius: 50px;
     padding: 12px 30px;
     border: 1px solid #1b2066;
     z-index: 1000;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
 }

 .nav-container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
 }

 .nav-center {
     display: flex;
     align-items: center;
     gap: 40px;
 }

 .logo img {
     width: auto;
     display: block;
     height: 35px;
     max-height: 35px;
 }

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

 .nav-links a {
     color: #e0e0e0;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     position: relative;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: #ffffff;
 }

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

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

 /* Banners */
 .banner1 {
     max-width: 90vw;
     max-height: 90vh;
     width: 100%;
     height: auto;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 20px;
 }

 .banner1 img {
     width: 100%;
     height: auto;
     object-fit: contain;
 }


 /* Logo em "Sobre A Sherife" */
 .logoSobre {
     width: 100%;
     max-height: 10vw;
     margin-bottom: 20px;
 }

 /* Instagram Embeds */
 .instagram-embeds {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
     border-radius: 80px;
 }

 .instagram-media {
     flex: 1 1 300px;
 }


 /* parte com brilho */
 .txtbrilho {
     color: #4a56ff;
     animation: mover 16s ease infinite;
 }

 /* CORAÇÃOZINHO DE LIKE - INICIO*/

 :root {
     --red: oklch(0.65 0.3 19.41);
     --particle-curve: cubic-bezier(0.2, 0.56, 0, 1);
 }

 .particleButton {
     position: relative;
     padding: 16px;
     background: transparent;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: block;
     margin: 0 auto;
 }

 .particleButton:hover path {
     stroke: var(--red);
 }

 .particleButton.liked path {
     fill: var(--red);
     stroke: var(--red);
 }

 .particleButton svg {
     position: relative;
     display: block;
     width: 3rem;
     height: 3rem;
 }

 .visually-hidden:not(:focus):not(:active) {
     position: absolute;
     width: 1px;
     height: 1px;
     overflow: hidden;
     clip: rect(0 0 0 0);
     clip-path: inset(50%);
     white-space: nowrap;
 }

 .particle {
     position: absolute;
     inset: 0;
     margin: auto;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: white;
     pointer-events: none;
     animation:
         fadeToTransparent var(--fade-duration) forwards,
         disperse 500ms forwards var(--particle-curve);
 }

 @keyframes fadeToTransparent {
     to {
         opacity: 0;
     }
 }

 @keyframes disperse {
     to {
         transform: translate(calc(cos(var(--angle)) * var(--distance)),
                 calc(sin(var(--angle)) * var(--distance)));
     }
 }


 /* CORAÇÃOZINHO DE LIKE - FIM */

 /* Lista de Whatsapp e localização das lojas */

 /* Filtro por cidade */
 .filtro-lojas {
     text-align: center;
     margin-bottom: 20px;
     margin-top: 20px;
 }

 .filtro-lojas label {
     font-size: 1rem;
     margin-right: 10px;
 }

 .filtro-lojas select {
     padding: 8px 12px;
     border-radius: 8px;
     border: none;
     font-size: 1rem;
     background-color: #1b2066;
     color: white;
 }

 /* Grid de lojas */
 .lojas-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     padding: 20px;
 }

 /* Bloco de loja */
 .loja-container {
     background-color: #1b2066;
     color: white;
     border-radius: 12px;
     padding: 20px;
     font-family: Arial, sans-serif;
     overflow: hidden;
     max-height: 60px;
     transition: max-height 0.4s ease, box-shadow 0.3s ease;
     cursor: pointer;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     position: relative;
     font-size: 0.9rem;
 }

 /* Expansão ao passar o mouse */
 .loja-container:hover {
     max-height: 200px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
 }

 /* Cabeçalho da loja com grid */
 .loja-resumo {
     display: grid;
     grid-template-columns: 1fr auto;
     align-items: start;
     gap: 10px;
     margin-bottom: 12px;
 }

 /* Nome da loja */
 .loja-nome {
     font-size: 1.2rem;
     font-weight: bold;
     line-height: 1.4;
 }

 /* Versão resumida: nome em uma linha com reticências */
 .loja-container:not(:hover) .loja-nome {
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     display: block;
 }

 /* Versão expandida: nome completo visível */
 .loja-container:hover .loja-nome {
     white-space: normal;
     overflow: visible;
     text-overflow: unset;
 }

 /* Ícones */
 .loja-icones {
     display: flex;
     align-items: center;
     gap: 10px;
     flex-shrink: 0;
 }

 .loja-icones i {
     font-size: 1.2rem;
     color: white;
 }

 /* Detalhes da loja */
 .loja-detalhes {
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .loja-container:hover .loja-detalhes {
     opacity: 1;
 }


 /* Lista de Whatsapp e localização das lojas - fim */

 /* Icones em Contato */
 .social-buttons {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin: 20px 20px;
     flex-wrap: wrap;
 }

 .btn-social {
     background-color: transparent;
     /* ou a cor desejada */
     border: none;
     padding: 1rem 2rem;
     font-size: 1.2rem;
     border-radius: 8px;
     text-decoration: none;
     color: #fff;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     transition: background 0.3s ease;
     background: #4a56ff;
 }

 .btn-social:hover {
     opacity: 0.8;
 }

 /* Auth buttons */
 .auth-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
 }

 .auth-btn {
     padding: 8px 20px;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.9rem;
     transition: all 0.3s ease;
 }

 .mobile-auth-buttons {
     display: none;
     flex-direction: column;
     gap: 10px;
 }

 .login-btn {
     color: #e0e0e0;
     border: 1px solid #333;
 }

 .login-btn:hover {
     color: #ffffff;
     border-color: #555;
 }

 .signup-btn {
     background: #ffffff;
     color: #000000;
     white-space: nowrap;
 }

 .signup-btn:hover {
     background: #f0f0f0;
     transform: translateY(-1px);
 }

 /* Mobile Menu Toggle */
 .menu-toggle {
     display: none;
     background: none;
     border: none;
     color: #ffffff;
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Section Styling */
 .section {
     min-height: 100vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .section h1 {
     font-size: 4rem;
     font-weight: 900;
     line-height: 1.0;
     ;
     text-align: center;
     letter-spacing: -2px;
     opacity: 0.9;
     margin-bottom: 0px;
     max-width: 900px;
     margin: 0 auto;
 }

 .section-info {
     font-size: 1.1rem;
     color: #999;
     font-style: italic;
     text-align: center;
     max-width: 500px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Individual Section Colors */
 #home {
     background: linear-gradient(135deg, #000214 0%, #1b2066 100%);
 }

 #about {
     background: linear-gradient(135deg, #1b2066 0%, #000214 100%);
 }

 #services {
     background: linear-gradient(135deg, #000214 0%, #1b2066 100%);
     padding: 60px;
 }

 #portfolio {
     background: linear-gradient(135deg, #1b2066 0%, #000214 100%);
     padding: 60px;
 }

 #contact {
     background: linear-gradient(135deg, #000214 0%, #1b2066 100%);
 }

 /* Footer */
 .footer {
     background: transparent;
     padding: 60px 20px 30px;
     display: flex;
     justify-content: center;
 }

 .footer-container {
     background: #1b2066;
     border-radius: 20px;
     padding: 40px;
     max-width: 800px;
     width: 100%;
 }

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

 .footer-section h3 {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: #ffffff;
 }

 .footer-section p,
 .footer-section a {
     color: #999;
     text-decoration: none;
     margin-bottom: 8px;
     display: block;
     transition: color 0.3s ease;
     font-size: 0.9rem;
 }

 .footer-section a:hover {
     color: #ffffff;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid #333;
     color: #666;
     font-size: 0.85rem;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .navbar {
         top: 15px;
         padding: 10px 20px;
         width: calc(100% - 30px);
         max-width: 500px;
     }

     .nav-container {
         justify-content: space-between;
         gap: 0;
     }

     .nav-center {
         gap: 20px;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: rgba(26, 26, 26, 0.95);
         flex-direction: column;
         padding: 20px;
         border-radius: 15px;
         margin-top: 10px;
         gap: 15px;
     }

     .nav-links.active {
         display: flex;
     }

     .auth-buttons {
         display: none;
     }

     .mobile-auth-buttons {
         display: flex !important;
         flex-direction: column;
         gap: 10px;
     }

     .mobile-auth-buttons .auth-btn {
         width: 100%;
         text-align: center;
     }

     .mobile-auth-buttons .auth-btn.signup-btn {
         background: #ffffff;
         color: #000000;
     }

     .menu-toggle {
         display: block;
     }

     .section h1 {
         font-size: 3rem;
         padding: 0 20px;
     }

     .footer-container {
         margin: 0 10px;
         padding: 30px 20px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 20px;
     }
 }

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

     .navbar {
         padding: 8px 15px;
     }

     .logo img {
         /*font-size: 1.3rem;*/
     }
 }

 /* Smooth scroll enhancement */
 @media (prefers-reduced-motion: no-preference) {
     html {
         scroll-behavior: smooth;
     }
 }
