/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 50%, #ffd700 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.container {
    display: flex;
    min-height: 80vh;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

/* Columna Izquierda */
.left-column {
    width: 45%;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 3px solid #f06537;
    border-top: 3px solid #e55a2b;
}

.photo-and-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.photo-container {
    margin-bottom: 0;
}

.eric-photo {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.logo-container {
    text-align: center;
}

.logo-graphic {
    margin-bottom: 15px;
}

.sunset-circle {
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    border-radius: 40px 40px 0 0;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
}

.palm-tree {
    color: #000;
    font-size: 16px;
}

.van-icon {
    color: #000;
    font-size: 14px;
}

.logo-text {
    color: #000;
}

.logo-text .name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.logo-text .title {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
}

/* Columna Derecha */
.right-column {
    width: 55%;
    background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

/* Logo Principal */
.main-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-icon {
    position: relative;
    margin-bottom: 15px;
}

.logo-icon .fa-tree {
    font-size: 30px;
    color: #ff8c00;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dots {
    position: absolute;
    top: -10px;
    right: 20px;
}

.dot {
    display: block;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    margin: 2px 0;
}

.transporter-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.by-wayatours {
    font-size: 18px;
    color: #000;
}

.wayatours {
    color: #4a90e2;
    font-weight: bold;
}

/* Redes Sociales */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Textos de Formularios */
.form-texts {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.form-text {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.form-text:hover {
    color: #333;
    text-decoration: underline;
}

/* Separador */
.separator {
    width: 200px;
    height: 2px;
    background: #000;
    margin: 20px 0;
}

/* Botones de Idiomas */
.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    padding: 12px 30px;
    background: #ff8c00;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
    text-align: center;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #ffed4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
        align-items: flex-start;
    }
    
    .container {
        flex-direction: column;
        min-height: auto;
        height: auto;
        width: 95%;
        margin: 20px auto;
    }
    
    .left-column {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .right-column {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .photo-and-social {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-media {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .form-texts {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .transporter-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .main-logo {
        margin-bottom: 20px;
    }
    
    .language-buttons {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .eric-photo {
        width: 150px;
        height: 180px;
    }
    
    .transporter-title {
        font-size: 24px;
    }
    
    .form-text {
        font-size: 16px;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
