/* ====================================
   SEÇÃO DE ENDEREÇO - AQUAFLEX AQUECEDORES
   Prefixo: loc-end-
==================================== */

.loc-end-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1628 0%, #162447 50%, #1f2f52 100%);
    overflow: hidden;
}

.loc-end-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.loc-end-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.loc-end-wrapper:hover::before {
    left: 100%;
}

.loc-end-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 85, 0, 0.2);
    border-color: rgba(255, 85, 0, 0.3);
}

/* Ícone Principal */
.loc-end-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-end-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5500, #ff7733);
    border-radius: 50%;
    animation: loc-end-pulse 2s ease-in-out infinite;
}

@keyframes loc-end-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.loc-end-icon {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    animation: loc-end-bounce 2s ease-in-out infinite;
}

@keyframes loc-end-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Conteúdo */
.loc-end-content {
    flex: 1;
}

.loc-end-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.loc-end-address {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #b8c5d6;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.loc-end-address i {
    color: #ff5500;
    margin-right: 10px;
    font-size: 16px;
}

.loc-end-address:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Botão de Ação */
.loc-end-action {
    display: flex;
    align-items: center;
}

.loc-end-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff5500, #ff7733);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.loc-end-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.loc-end-btn:hover::before {
    width: 300px;
    height: 300px;
}

.loc-end-btn:hover {
    background: linear-gradient(135deg, #ff7733, #ff9955);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.loc-end-btn span {
    position: relative;
    z-index: 1;
}

.loc-end-btn i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.loc-end-btn:hover i {
    transform: translateX(5px);
}

/* Elementos Decorativos */
.loc-end-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff5500;
    border-radius: 50%;
    opacity: 0.4;
    animation: loc-end-float 4s ease-in-out infinite;
}

.loc-end-particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.loc-end-particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.loc-end-particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes loc-end-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}

/* ====================================
   RESPONSIVIDADE
==================================== */

@media (max-width: 992px) {
    .loc-end-wrapper {
        grid-template-columns: auto 1fr;
        gap: 30px;
        padding: 35px 40px;
    }
    
    .loc-end-action {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .loc-end-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .loc-end-section {
        padding: 60px 0;
    }
    
    .loc-end-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .loc-end-icon-container {
        margin: 0 auto;
        width: 70px;
        height: 70px;
    }
    
    .loc-end-icon {
        font-size: 32px;
    }
    
    .loc-end-title {
        font-size: 24px;
    }
    
    .loc-end-address {
        font-size: 16px;
    }
    
    .loc-end-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .loc-end-wrapper {
        padding: 25px 20px;
    }
    
    .loc-end-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .loc-end-address {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .loc-end-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 10px;
    }
}