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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #EDEDED;
    background-image: url('../img/fundobolinhas.png');
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: #2B2B2B;
    padding: 40px 0;
}

.logo-box {
    display: block;
    width: 416px;
    background: #ffffff;
    padding: 30px 0;
    border-radius: 0 0 36px 36px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 auto;
}

.logo-img {
    display: block;
    height: 72px;
    width: auto;
    margin: 0 auto;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.ip-highlight {
    color: #07B551;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.ip-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.ip-display {
    background: rgba(0,0,0,0.04);
    color: #2B2B2B;
    padding: 22px 24px;
    border-radius: 18px;
    margin: 16px 0 18px 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.ip-address {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 4px;
    color: #2B2B2B;
}

.loading {
    font-size: 1.5rem;
    color: #666;
}

.copy-button {
    background: #09E968;
    color: #2B2B2B;
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(9, 233, 104, 0.35);
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 233, 104, 0.45);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-success {
    background: #09E968 !important;
}

.info-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.solutions-logo {
    height: auto;
    width: auto;
    max-width: 100%;
}

.info-section h2 {
    color: #2B2B2B;
    /* margin-bottom: 25px; */
    font-size: 3rem;
    /* text-align: center; */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.info-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

.info-card h3 {
    color: #2B2B2B;
    margin-bottom: 8px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #07B551;
    font-size: 1.25rem;
}

.info-card p {
    color: #6c757d;
    line-height: 1.7;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: stretch;
    color: #2B2B2B;
    padding: 16px 20px;
    opacity: 0.9;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-badge {
    height: 28px;
    width: auto;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
    overflow: visible;
    z-index: 5;
}

.copy-button[data-tip] {
    position: relative;
}

.copy-button[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.copy-button[data-tip]:hover::after {
    opacity: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .ip-address {
        font-size: 1.8rem;
    }
    
    .ip-card, .info-section {
        padding: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.ip-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.ip-detail {
    background: rgba(0,0,0,0.035);
    padding: 12px 14px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.ip-detail strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.ip-detail span {
    font-size: 1.1rem;
    font-weight: bold;
}

.banners-cdw {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.banner-item {
  flex: 1 1 500px;
  max-width: auto;
  width: 600px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.banner-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.banner-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
/* Fade suave para elementos ao entrar na tela */
.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}

.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}
