/* 
* Estilos personalizados para la web de reseller de hosting 
* Autor: Tu Empresa
* Versión: 1.0
*/

/* Estilos generales */
:root {
    --primary-color: #0066cc;
    --primary-dark: #0050a0;
    --primary-light: #4d94ff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

/* Sección de planes y precios */
.price-tag {
    position: relative;
}

.price-tag:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 5px;
    z-index: -1;
}

/* Estilos para tarjetas */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Estilos para búsqueda de dominios */
.domain-search-form {
    position: relative;
}

.domain-result-item {
    transition: all 0.3s ease;
}

.domain-result-item:hover {
    transform: translateX(5px);
}

/* Estilos para la página de contacto */
.contact-info-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-icons a {
    display: inline-block;
    color: var(--primary-color);
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}