/* Instalacao Protection Page Styles */
.instalacao-hero-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.9), rgba(1, 52, 64, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="instalacao-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23instalacao-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.instalacao-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.8), rgba(1, 52, 64, 0.6));
    z-index: 1;
}

.instalacao-hero-section .container {
    position: relative;
    z-index: 2;
}

.instalacao-hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.instalacao-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.instalacao-visual {
    position: relative;
}

.instalacao-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.instalacao-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(4, 217, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Area Cards */
.area-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.area-card ul {
    margin-top: 1rem;
}

.area-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Installation Type Cards */
.installation-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.installation-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.installation-type-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.installation-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.installation-type-content ul {
    margin-top: 1rem;
}

.installation-type-content li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.02), rgba(1, 52, 64, 0.02));
}

.accordion-button {
    font-weight: 500;
    color: var(--accent-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(4, 217, 217, 0.1);
    color: var(--accent-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(4, 217, 217, 0.25);
}

/* Responsive Instalacao Protection Page */
@media (max-width: 768px) {
    .instalacao-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .instalacao-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .instalacao-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .area-card {
        margin-bottom: 2rem;
    }
    
    .installation-type-card {
        margin-bottom: 2rem;
    }
    
    .installation-type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .instalacao-hero-section {
        background-attachment: scroll;
    }
    
    .instalacao-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .instalacao-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .area-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .installation-type-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}

/* Custom Interactive Section Styles */
.custom-instalacao-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.02), rgba(1, 52, 64, 0.02));
    position: relative;
}

.custom-instalacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="instalacao-custom-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(217,112,74,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23instalacao-custom-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.custom-instalacao-section .container {
    position: relative;
    z-index: 2;
}

/* Custom Content Cards */
.custom-content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.custom-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(4, 217, 217, 0.05);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(4, 217, 217, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
}

/* Benefit Cards */
.benefit-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 15px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateY(-3px);
}

.benefit-card i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Installation Type Items */
.installation-type-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(4, 217, 217, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.installation-type-item:hover {
    background: rgba(4, 217, 217, 0.1);
    transform: translateY(-5px);
}

.installation-type-item i {
    font-size: 2rem;
}

/* City Lists */
.city-list {
    background: rgba(4, 217, 217, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
}

.city-list h6 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.city-list ul {
    margin: 0;
}

.city-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Table Styles */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    color: white;
    border: none;
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(4, 217, 217, 0.05);
}

/* Responsive Custom Section */
@media (max-width: 768px) {
    .custom-content-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card i {
        font-size: 1.2rem;
    }
    
    .installation-type-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .installation-type-item i {
        font-size: 1.5rem;
    }
    
    .city-list {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .custom-content-card {
        padding: 1rem;
    }
    
    .content-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-card i {
        margin-bottom: 0.5rem;
    }
    
    .installation-type-item {
        padding: 0.75rem;
    }
    
    .city-list {
        padding: 0.75rem;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
}

/* Cidades e Zonas de Atendimento Section */
.cidades-atendimento-section {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.03), rgba(1, 52, 64, 0.03));
    position: relative;
}

.cidades-atendimento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cidades-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(217,112,74,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23cidades-pattern)"/></svg>');
    opacity: 0.8;
    z-index: 1;
}

.cidades-atendimento-section .container {
    position: relative;
    z-index: 2;
}

/* Cidade Section Cards */
.cidade-section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cidade-section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cidade-section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(4, 217, 217, 0.1);
}

.cidade-section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(4, 217, 217, 0.3);
}

/* Cidade Items */
.cidade-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(4, 217, 217, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.cidade-item:hover {
    background: rgba(4, 217, 217, 0.1);
    transform: translateX(5px);
    border-left-color: var(--accent-color);
    box-shadow: 0 3px 10px rgba(4, 217, 217, 0.2);
}

.cidade-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.cidade-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

/* Cidade CTA Card */
.cidade-cta-card {
    background: linear-gradient(135deg, rgba(4, 217, 217, 0.1), rgba(1, 52, 64, 0.1));
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(4, 217, 217, 0.2);
    transition: all 0.3s ease;
}

.cidade-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(4, 217, 217, 0.2);
    border-color: var(--accent-color);
}

.cidade-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #c55a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(4, 217, 217, 0.4);
}

.cidade-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cidade-cta-buttons .btn {
    min-width: 200px;
}

/* Responsive Cidades Section */
@media (max-width: 768px) {
    .cidade-section-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cidade-section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cidade-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .cidade-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .cidade-item span {
        font-size: 0.9rem;
    }
    
    .cidade-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cidade-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cidade-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cidade-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .cidade-section-card {
        padding: 1rem;
    }
    
    .cidade-section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cidade-item {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .cidade-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .cidade-item span {
        font-size: 0.85rem;
    }
    
    .cidade-cta-card {
        padding: 1.5rem 1rem;
    }
    
    .cidade-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cidade-cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}
