/* Estilo base */
body {
    margin: 0;
    font-family: 'Comic Sans MS', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f5f5f5;
    background-image: url('https://example.com/comic-pattern.png'); /* Fondo con un patrón estilo cómic */
    background-size: cover;
    background-attachment: fixed;
}
/* Contenedor principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* Encabezado */
header {
    background: linear-gradient(90deg, #ff3e00, #ff9500);
    color: #fff;
    padding: 1rem 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo h1{
	font-size:2.2rem;
	text-align: center;
	}
header .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
header .social-links a {
    color:#fff;
    text-decoration: none;
    font-weight: bold;
	font-size:1.2rem;
    transition: transform 0.3s;
}
header .social-links a:hover {
    transform: scale(1.2);
	color:#666;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.nav-links a:hover {
    color:#666;
}
/* Héroe */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: url('https://example.com/comic-hero.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}
.btn-cta {
    display: inline-block;
    background: #ff3e00;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background 0.3s;
}
.btn-cta:hover {
    background: #ff6600;
    transform: scale(1.1);
}
/* Colección */
.services {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
}
.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff3e00;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 1.5rem;
}
.service-grid article {
    background: #ffe0b3;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.service-grid article:hover {
    transform: translateY(-5px);
}
.service-grid h3 a {
    font-size: 1.5rem;
    color: #ff9500;
	text-decoration:none;
}
.service-grid h3 a:hover{
	color:#666;
	}
/* Testimonios */
.testimonials {
    padding: 2rem 1rem;
    background: #f5f5f5;
}
.testimonials p {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	color: #333;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
blockquote {
    background: #fff;
    padding: 1.5rem;
    border: 3px dashed #ff9500;
    font-style: italic;
    font-family: 'Comic Sans MS', cursive;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
blockquote p {
    margin-bottom: 1rem;
}
blockquote cite {
    font-weight: bold;
    color: #ff3e00;
}
/* Contacto */
.contact {
    padding: 2rem 1rem;
    text-align: center;
    background: #ffe0b3;
}
.contact p {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff3e00;
}
form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ff9500;
}
form input,
form textarea {
    width: 100%;
    margin:  0 auto;
    border: 2px solid #ff9500;
    border-radius: 10px;
    font-family: 'Comic Sans MS', cursive;
}
form button {
    display: inline-block;
    background: #ff3e00;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background 0.3s;
}
form button:hover {
    background: #e63900;
    transform: scale(1.1);
}
.contact a{
	text-decoration:none;
	}
/* Pie de Página */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
	display: grid;
  	grid-template-columns: repeat(2, 1fr);
  	grid-gap: 5px;
}
.columna2 a{
	text-decoration:none;
	color:#FFF;
	}
.columna2 a:hover{
	color:#00F;
	}
/* Responsivo */
@media (max-width: 1024px) {
	.navbar{
		flex-direction: row;
		}
	.logo h1{
		font-size:3rem;
		}
	header .social-links {
		flex-direction: row;
		}
	header .social-links a{
		font-size: 2rem;
		margin:0.2rem;
		}
    .nav-links {
        display: flex;
		justify-content: space-evenly;		
        width: 100%;
		margin: 0.5rem;
    }
	.nav-links a{
		font-size:2.5rem;
		}
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 2rem;
    }
    .btn-cta {
        font-size: 2rem;
    }
    .services h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.8rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
	.service-grid h3{
		font-size:2.5rem;
		}
	.service-grid p{
		font-size:2rem;
		}
	.contact h4,a {
		font-size:2rem;
		}
	}
@media (max-width: 768px) {
	.navbar{
		flex-direction: row;
		}
	.logo h1{
		font-size:3rem;
		}
	header .social-links {
		flex-direction: row;
		}
	header .social-links a{
		font-size: 1.8rem;
		margin:0.2rem;
		}
    .nav-links {
        display: flex;
		justify-content: space-evenly;		
        width: 100%;
		margin: 0.5rem;
    }
	.nav-links a{
		font-size:2.2rem;
		}
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.8rem;
    }
    .btn-cta {
        font-size: 1.8rem;
    }
    .services h2,
    .testimonials h2,
    .contact p {
        font-size: 2.5rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
	.service-grid h3 a{
		font-size:2.5rem;
		}
	.service-grid h3{
		font-size:2rem;
		}
	.contact p,a {
		font-size:1.5rem;
		}
}
@media (max-width: 480px) {
	.navbar{
		flex-direction: row;
		}
	.logo h1{
		font-size:2.3rem;
		}
	header .social-links {
		flex-direction: row;
		}
	header .social-links a{
		font-size: 1.2rem;
		margin:0.2rem;
		}
	header .nav-links{
		display:flex;
		justify-content:flex-start;
		gap:1rem;
		}
	header .nav-links a{
		font-size:1.7rem;
		}
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.5rem;
    }
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    .service-grid {
        font-size: 1.5rem;
    }
    .service-grid h3{
        font-size: 2.5rem;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
	.contact {
		font-size: 1.2rem;
		}
}
@media (max-width: 320px) {
	.navbar{
		flex-direction: row;
		}
	.logo h1{
		font-size:2rem;
		}
	header .social-links {
		display:flex;
		gap: 0.8rem;
		}
	header .social-links a{
		font-size: 1.2rem;
		margin:0.2rem;
		}
	header .nav-links{
		display:contents;
		}
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.5rem;
    }
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    .service-grid {
        font-size: 1.5rem;
    }
    .service-grid h3{
        font-size: 2.5rem;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
	.contact {
		font-size: 1.2rem;
		}
	}
