/* Consultor SEO Angola - Style Customizations */

:root {
    --navy: #0A1628;
    --navy-alt: #0D1F38;
    --navy-deep: #111827;
    --orange: #E87722;
    --orange-light: #F09340;
    --blue: #1E90FF;
    --white: #FFFFFF;
    --gray-light: #A0AABB;
}

/* Animações suaves no scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section styling refinement */
.hero-section {
    position: relative;
    padding: 12px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(232, 119, 34, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hover effects para cards */
div[style*="background: #0D1F38"] {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

div[style*="background: #0D1F38"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* Accordion styling refinement */
.accordion-button:not(.collapsed) {
    background-color: rgba(232, 119, 34, 0.1) !important;
    border-bottom: 1px solid rgba(232, 119, 34, 0.3) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(46%) saturate(2152%) hue-rotate(5deg) brightness(104%) contrast(102%);
}

/* Links styling */
a {
    transition: all 0.25s ease;
}

a:hover {
    text-decoration: none;
}

/* Button hover states */
button[style*="background: #25D366"]:hover,
a[style*="background: #25D366"]:hover {
    background: #1fad53 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
}

button[style*="border: 2px solid rgba(255"]:hover,
a[style*="border: 2px solid rgba(255"]:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
}

.accordion-button:not(.collapsed) .accordion-icon::before {
  content: "\f2ea"; /* bi-dash-circle */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="gap: 64px"] {
        gap: 32px !important;
    }
    
    /* Reduzir elementos decorativos na foto em mobile para melhor visibilidade */
    div[style*="position: absolute; top: 24px; right: 24px"] {
        transform: scale(0.65) !important;
        transform-origin: top right !important;
        padding: 8px 10px !important;
        top: 12px !important;
        right: 12px !important;
    }
    
    div[style*="position: absolute; top: 24px; right: 24px"] > div {
        font-size: 1rem !important;
    }
    
    div[style*="position: absolute; top: 24px; right: 24px"] > div:last-child {
        font-size: 0.6rem !important;
    }
    
    div[style*="position: absolute; bottom: 24px; left: 24px"] {
        transform: scale(0.65) !important;
        transform-origin: bottom left !important;
        padding: 5px 8px !important;
        bottom: 12px !important;
        left: 12px !important;
    }
    
    div[style*="position: absolute; bottom: 24px; left: 24px"] > svg {
        width: 50px !important;
        height: 25px !important;
    }

    .col-lg-7 {
        margin: 15px 0 15px 0 !important;
    }
}

/* Print styles */
@media print {
    nav, footer {
        display: none;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
