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

:root {
    --black: #000000;
    --white: #ffffff;
    --red: #ff0002;
    --dark-red: #80001c;
    --yellow: #ffad00;
    --gray: #1d1f1e;
    --light-gray: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: pointer;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}


html {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--gray);
}


* {
    cursor: pointer;
}


a[href^="tel:"] {
    cursor: default;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}


@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--white);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .header {
        left: 0;
        transform: none;
        max-width: none;
    }
}

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

.logo {
    height: 40px;
    width: auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: #fb0103;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(251, 1, 3, 0.3);
}

.header-phone:hover {
    background: #d10102;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(251, 1, 3, 0.5);
    color: var(--white);
}

.header-phone svg {
    stroke: var(--white);
}


.hero-banner {
    margin-top: 0;
    padding-top: 90px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-banner {
        max-width: 1200px;
        padding-top: 100px;
    }
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

@media (min-width: 1024px) {
    .banner-image {
        object-fit: contain;
        max-height: none;
    }
}

.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

.clickable-image:hover {
    opacity: 0.9;
}


.hero-content-section {
    padding: 60px 0;
    background: var(--gray);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.store-image-section {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    background: var(--gray);
}

@media (min-width: 1024px) {
    .store-image-section {
        max-width: 1200px;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--yellow);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-cta {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        max-width: 600px;
    }
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 280px;
}

@media (min-width: 1024px) {
    .btn {
        font-size: 18px;
        padding: 18px 36px;
        width: auto;
        min-width: 200px;
    }
}

.btn-primary {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    font-size: 14px;
    padding: 12px 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1fb855;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: #007BFF;
    color: var(--white);
    border: 2px solid #007BFF;
    font-size: 14px;
    padding: 12px 20px;
}

.btn-secondary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: var(--white);
}

.btn-large {
    padding: 16px 24px;
    font-size: 16px;
}


.services {
    padding: 80px 0;
    background: var(--gray);
}

@media (min-width: 1024px) {
    .services {
        padding: 100px 0;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: none;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 173, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.service-icon i {
    font-size: 48px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--yellow);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
}


.benefits {
    padding: 80px 0;
    background: var(--gray);
}

@media (min-width: 1024px) {
    .benefits {
        padding: 100px 0;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: none;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.benefit-item svg {
    flex-shrink: 0;
    stroke: var(--yellow);
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
}


.cta-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-red), var(--red));
    position: relative;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 100px 0;
        max-width: none;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
}


.location {
    padding: 60px 0;
    background: var(--gray);
}

@media (min-width: 1024px) {
    .location {
        padding: 80px 0;
    }
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 60px;
        max-width: none;
    }
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-buttons {
        gap: 15px;
        max-width: none;
    }
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    font-weight: 600;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #1fb855;
    transform: translateX(5px);
    color: var(--white);
}

.phone-btn {
    background: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
}

.phone-btn:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: translateX(5px);
    color: var(--white);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}


.footer {
    background: var(--white);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 480px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .footer {
        max-width: none;
    }
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    gap: 30px;
}

@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer h4 {
    color: var(--black);
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--red);
}

.footer-description {
    color: var(--black) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6);
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #1fb855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #1fb855, #128c3e);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s;
    fill: white;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        gap: 8px;
    }
    
    .service-card {
        padding: 12px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .service-card p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-banner {
        padding-top: 120px;
    }

    .hero-content-section {
        padding: 40px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .service-card {
        padding: 15px;
        min-width: 0;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .service-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .header-phone {
        padding: 10px 12px;
        font-size: 14px;
    }

    .commercial-button {
        display: none;
    }
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 2, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 2, 0.4);
}


.commercial-button {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    padding: 15px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 998;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.commercial-button:hover {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 4px 0 15px rgba(255, 0, 2, 0.4);
}

.commercial-button i {
    writing-mode: horizontal-tb;
    font-size: 20px;
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-100%);
    }
    to {
        transform: translateY(-50%) translateX(0);
    }
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    color: var(--gray);
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    text-align: center;
}

.popup-content h3 {
    color: var(--red);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.popup-content p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--light-gray);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--light-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--red);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}